Changeset 6609 for trunk/bp-groups/bp-groups-admin.php
- Timestamp:
- 12/10/2012 02:43:06 PM (13 years ago)
- File:
-
- 1 edited
-
trunk/bp-groups/bp-groups-admin.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-groups/bp-groups-admin.php
r6606 r6609 57 57 58 58 // Build redirection URL 59 $redirect_to = remove_query_arg( array( 'action', ' gid', 'deleted', 'error', 'updated', 'success_new', 'error_new', 'success_modified', 'error_modified' ), $_SERVER['REQUEST_URI'] );59 $redirect_to = remove_query_arg( array( 'action', 'action2', 'gid', 'deleted', 'error', 'updated', 'success_new', 'error_new', 'success_modified', 'error_modified' ), $_SERVER['REQUEST_URI'] ); 60 60 61 61 // Decide whether to load the dev version of the CSS and JavaScript 62 62 $min = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : 'min.'; 63 64 // Bottom bulk action hack 65 if ( !empty( $_REQUEST['action2'] ) ) { 66 $_REQUEST['action'] = $_REQUEST['action2']; 67 unset( $_REQUEST['action2'] ); 68 } 63 69 64 70 // Decide whether to load the index or edit screen … … 544 550 } 545 551 546 $base_url = remove_query_arg( array( 'action', 'action2', 'paged', 's', '_wpnonce', 'gid' ), $_SERVER['REQUEST_URI'] ); 547 548 ?> 552 $base_url = remove_query_arg( array( 'action', 'action2', 'paged', 's', '_wpnonce', 'gid' ), $_SERVER['REQUEST_URI'] ); ?> 549 553 550 554 <div class="wrap"> … … 1088 1092 1089 1093 if ( empty( $row_class ) ) { 1090 $row_class = ( $row_class == '' ) ? ' class="alternate"' : ''; 1094 $row_class = ' class="alternate"'; 1095 } else { 1096 $row_class = ''; 1091 1097 } 1092 1098
Note: See TracChangeset
for help on using the changeset viewer.