Changeset 4324 for trunk/bbpress.php
- Timestamp:
- 11/03/2012 09:20:34 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bbpress.php
r4321 r4324 385 385 */ 386 386 public function register_theme_packages() { 387 388 // Register the default theme compatibility package 387 389 bbp_register_theme_package( array( 388 390 'id' => 'default', … … 392 394 'url' => trailingslashit( $this->themes_url . 'bbp-default' ) 393 395 ) ); 396 397 // Register the basic theme stack. This is really dope. 398 bbp_register_template_stack( 'get_stylesheet_directory', 10 ); 399 bbp_register_template_stack( 'get_template_directory', 12 ); 400 bbp_register_template_stack( 'bbp_get_theme_compat_dir', 14 ); 394 401 } 395 402 … … 803 810 804 811 /** 805 * Register the bbPress capabilities806 *807 * @since bbPress (r3031)808 *809 * @uses BBP_Capabilities810 */811 public function register_capabilities() {812 $this->capabilities = new BBP_Capabilities();813 }814 815 /**816 812 * Setup the currently logged-in user 817 813 *
Note: See TracChangeset
for help on using the changeset viewer.