Changeset 3928 for branches/plugin/bbpress.php
- Timestamp:
- 05/31/2012 05:02:02 AM (14 years ago)
- File:
-
- 1 edited
-
branches/plugin/bbpress.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/plugin/bbpress.php
r3927 r3928 533 533 /** Default Theme *****************************************************/ 534 534 535 bbp_register_theme_package( new BBP_Theme_Compat( array(535 bbp_register_theme_package( array( 536 536 'id' => 'default', 537 537 'name' => __( 'bbPress Default', 'bbpress' ), … … 539 539 'dir' => trailingslashit( $this->plugin_dir . 'bbp-theme-compat' ), 540 540 'url' => trailingslashit( $this->plugin_url . 'bbp-theme-compat' ) 541 ) ) );541 ) ); 542 542 543 543 /** Twenty Ten ********************************************************/ 544 544 545 bbp_register_theme_package( new BBP_Theme_Compat( array(545 bbp_register_theme_package( array( 546 546 'id' => 'bbp-twentyten', 547 547 'name' => __( 'Twenty Ten (bbPress)', 'bbpress' ), … … 549 549 'dir' => trailingslashit( $this->themes_dir . 'bbp-twentyten' ), 550 550 'url' => trailingslashit( $this->themes_url . 'bbp-twentyten' ) 551 ) ) );551 ) ); 552 552 } 553 553
Note: See TracChangeset
for help on using the changeset viewer.