Ticket #5105: 5105.diff
File 5105.diff, 1.0 KB (added by , 12 years ago) |
---|
-
bp-groups/bp-groups-admin.php
402 402 */ 403 403 function bp_groups_admin() { 404 404 // Decide whether to load the index or edit screen 405 $doaction = ! empty( $_REQUEST['action'] ) ? $_REQUEST['action'] : '';405 $doaction = bp_admin_list_table_current_bulk_action(); 406 406 407 407 // Display the single group edit screen 408 408 if ( 'edit' == $doaction && ! empty( $_GET['gid'] ) ) { … … 1288 1288 * @since BuddyPress (1.7) 1289 1289 */ 1290 1290 function column_cb( $item = array() ) { 1291 printf( '<label class="screen-reader-text" for=" aid-%1$d">' . __( 'Select group %1$d', 'buddypress' ) . '</label><input type="checkbox" name="aid[]" value="%1$d" id="aid-%1$d" />', $item['id'] );1291 printf( '<label class="screen-reader-text" for="gid-%1$d">' . __( 'Select group %1$d', 'buddypress' ) . '</label><input type="checkbox" name="gid[]" value="%1$d" id="gid-%1$d" />', $item['id'] ); 1292 1292 } 1293 1293 1294 1294 /**