Changeset 4248 for trunk/bbpress.php
- Timestamp:
- 10/13/2012 06:58:34 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bbpress.php
r4244 r4248 192 192 $this->lang_dir = apply_filters( 'bbp_lang_dir', trailingslashit( $this->plugin_dir . 'bbp-languages' ) ); 193 193 194 // Includes 195 $this->includes_dir = apply_filters( 'bbp_includes_dir', trailingslashit( $this->plugin_dir . 'bbp-includes' ) ); 196 $this->includes_url = apply_filters( 'bbp_includes_url', trailingslashit( $this->plugin_url . 'bbp-includes' ) ); 197 194 198 /** Identifiers *******************************************************/ 195 199 … … 319 323 // Quick admin check and load if needed 320 324 if ( is_admin() ) { 321 require( $this-> plugin_dir . 'bbp-admin/bbp-admin.php' );322 require( $this-> plugin_dir . 'bbp-admin/bbp-actions.php' );325 require( $this->includes_dir . 'admin/bbp-admin.php' ); 326 require( $this->includes_dir . 'admin/bbp-actions.php' ); 323 327 } 324 328 }
Note: See TracChangeset
for help on using the changeset viewer.