Reset notice after restoring a comment from the trash, props caesarsgrunt, fixes #11223
git-svn-id: http://svn.automattic.com/wordpress/trunk@12282 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
42379cb215
commit
3fb83c89e9
|
@ -185,6 +185,8 @@ case 'untrashcomment' :
|
||||||
else
|
else
|
||||||
$redir = admin_url('edit-comments.php');
|
$redir = admin_url('edit-comments.php');
|
||||||
|
|
||||||
|
$redir = remove_query_arg( array('trashed', 'untrashed', 'deleted', 'ids'), $redir );
|
||||||
|
|
||||||
if ( $action == 'trashcomment' ) {
|
if ( $action == 'trashcomment' ) {
|
||||||
wp_trash_comment($comment_id);
|
wp_trash_comment($comment_id);
|
||||||
$redir = add_query_arg( array('trashed' => '1', 'ids' => $comment_id), $redir );
|
$redir = add_query_arg( array('trashed' => '1', 'ids' => $comment_id), $redir );
|
||||||
|
|
Loading…
Reference in New Issue