- Timestamp:
- 11/24/2025 07:23:06 PM (6 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/admin/classes/class-bbp-topic-replies-list-table.php
r7378 r7379 89 89 */ 90 90 public function get_bulk_actions() { 91 return array(); 92 93 // @todo cap checks 94 return array( 91 92 // Default bulk actions 93 $retval = array( 95 94 'unapprove' => esc_html__( 'Unapprove', 'bbpress' ), 96 95 'spam' => esc_html__( 'Spam', 'bbpress' ), 97 96 'trash' => esc_html__( 'Trash', 'bbpress' ) 98 97 ); 98 99 // Override to empty 100 $retval = array(); 101 102 // Return 103 return $retval; 99 104 } 100 105
Note: See TracChangeset
for help on using the changeset viewer.