Changes from trunk/wp-admin/admin.php at r9979 to branches/2.7/wp-admin/admin.php at r10312
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.7/wp-admin/admin.php
r9979 r10312 62 62 // backwards compatibility for plugins using add_management_page 63 63 if ( empty( $page_hook ) && 'edit.php' == $pagenow && '' != get_plugin_page_hook($plugin_page, 'tools.php') ) { 64 wp_redirect('tools.php?page=' . $plugin_page); 64 // There could be plugin specific params on the URL, so we need the whole query string 65 if ( !empty($_SERVER[ 'QUERY_STRING' ]) ) 66 $query_string = $_SERVER[ 'QUERY_STRING' ]; 67 else 68 $query_string = 'page=' . $plugin_page; 69 wp_redirect( 'tools.php?' . $query_string ); 65 70 exit; 66 71 }
Note: See TracChangeset
for help on using the changeset viewer.