diff --git a/wp-admin/includes/template.php b/wp-admin/includes/template.php index 44779f7d2c..23b772ee38 100644 --- a/wp-admin/includes/template.php +++ b/wp-admin/includes/template.php @@ -1527,7 +1527,7 @@ function _draft_or_post_title( $post_id = 0 ) { * */ function _admin_search_query() { - echo isset($_GET['s']) ? esc_attr( stripslashes( $_GET['s'] ) ) : ''; + echo isset($_REQUEST['s']) ? esc_attr( stripslashes( $_REQUEST['s'] ) ) : ''; } /**