From ed8970fe66dd4a44093d2b5908f107c8e4e274c5 Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Sun, 4 Apr 2010 06:37:10 +0000 Subject: [PATCH] Don't remove a category filter after performing an action on edit.php. props garyc40, fixes #11587 git-svn-id: https://develop.svn.wordpress.org/trunk@13987 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/edit.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-admin/edit.php b/wp-admin/edit.php index 19c10806b4..19d7c54518 100644 --- a/wp-admin/edit.php +++ b/wp-admin/edit.php @@ -128,7 +128,7 @@ if ( isset($_GET['doaction']) || isset($_GET['doaction2']) || isset($_GET['delet } if ( isset($_GET['action']) ) - $sendback = remove_query_arg( array('action', 'action2', 'cat', 'tags_input', 'post_author', 'comment_status', 'ping_status', '_status', 'post', 'bulk_edit', 'post_view'), $sendback ); + $sendback = remove_query_arg( array('action', 'action2', 'tags_input', 'post_author', 'comment_status', 'ping_status', '_status', 'post', 'bulk_edit', 'post_view'), $sendback ); wp_redirect($sendback); exit();