Changeset 4222 for trunk/bbpress.php
- Timestamp:
- 09/17/2012 12:03:03 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bbpress.php
r4215 r4222 209 209 $this->hidden_status_id = apply_filters( 'bbp_hidden_post_status', 'hidden' ); 210 210 $this->trash_status_id = apply_filters( 'bbp_trash_post_status', 'trash' ); 211 $this->bozo_status_id = apply_filters( 'bbp_bozo_post_status', 'bozo' );212 211 213 212 // Other identifiers … … 710 709 ); 711 710 712 // Bozo713 register_post_status(714 bbp_get_bozo_status_id(),715 apply_filters( 'bbp_register_bozo_post_status', array(716 'label' => _x( 'Bozo', 'post', 'bbpress' ),717 'label_count' => _nx_noop( 'Bozo <span class="count">(%s)</span>', 'Bozo <span class="count">(%s)</span>', 'bbpress' ),718 'private' => true,719 'exclude_from_search' => true,720 'show_in_admin_status_list' => true,721 'show_in_admin_all_list' => false722 ) )723 );724 725 711 /** 726 712 * Trash fix … … 829 815 830 816 /** 817 * Register the bbPress capabilities 818 * 819 * @since bbPress (r3031) 820 * 821 * @uses BBP_Capabilities 822 */ 823 public function register_capabilities() { 824 $this->capabilities = new BBP_Capabilities(); 825 } 826 827 /** 831 828 * Setup the currently logged-in user 832 829 *
Note: See TracChangeset
for help on using the changeset viewer.