Skip to:
Content

bbPress.org

Changeset 4263 for trunk/bbpress.php


Ignore:
Timestamp:
10/20/2012 08:06:36 PM (14 years ago)
Author:
johnjamesjacoby
Message:

Update variable order and inline doc in bbpress.php. See r4262.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bbpress.php

    r4262 r4263  
    192192        $this->plugin_url = apply_filters( 'bbp_plugin_dir_url',   plugin_dir_url ( $this->file ) );
    193193
    194         // Themes
    195         $this->themes_dir = apply_filters( 'bbp_themes_dir', trailingslashit( $this->plugin_dir . 'templates' ) );
    196         $this->themes_url = apply_filters( 'bbp_themes_url', trailingslashit( $this->plugin_url . 'templates' ) );
     194        // Includes
     195        $this->includes_dir = apply_filters( 'bbp_includes_dir', trailingslashit( $this->plugin_dir . 'includes' ) );
     196        $this->includes_url = apply_filters( 'bbp_includes_url', trailingslashit( $this->plugin_url . 'includes' ) );
    197197
    198198        // Languages
    199         $this->lang_dir   = apply_filters( 'bbp_lang_dir', trailingslashit( $this->plugin_dir . 'languages' ) );
    200 
    201         // Includes
    202         $this->includes_dir = apply_filters( 'bbp_includes_dir', trailingslashit( $this->plugin_dir . 'includes' ) );
    203         $this->includes_url = apply_filters( 'bbp_includes_url', trailingslashit( $this->plugin_url . 'includes' ) );
    204        
     199        $this->lang_dir     = apply_filters( 'bbp_lang_dir',    trailingslashit( $this->plugin_dir . 'languages' ) );
     200
     201        // Templates
     202        $this->themes_dir   = apply_filters( 'bbp_themes_dir',   trailingslashit( $this->plugin_dir . 'templates' ) );
     203        $this->themes_url   = apply_filters( 'bbp_themes_url',   trailingslashit( $this->plugin_url . 'templates' ) );
     204
    205205        /** Identifiers *******************************************************/
    206206
Note: See TracChangeset for help on using the changeset viewer.