Stay on the same page after moderating comments. Fixes #7412 for 2.7
git-svn-id: https://develop.svn.wordpress.org/trunk@8459 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
c798e2041d
commit
8867258f87
@ -30,6 +30,8 @@ if ( !empty( $_REQUEST['delete_comments'] ) ) {
|
||||
}
|
||||
endforeach;
|
||||
$redirect_to = basename( __FILE__ ) . '?deleted=' . $comments_deleted . '&approved=' . $comments_approved . '&spam=' . $comments_spammed . '&unapproved=' . $comments_unapproved;
|
||||
if ( isset($_REQUEST['apage']) )
|
||||
$redirect_to = add_query_arg( 'apage', absint($_REQUEST['apage']), $redirect_to );
|
||||
if ( !empty($_REQUEST['mode']) )
|
||||
$redirect_to = add_query_arg('mode', $_REQUEST['mode'], $redirect_to);
|
||||
if ( !empty($_REQUEST['comment_status']) )
|
||||
@ -175,6 +177,9 @@ if ( $page_links )
|
||||
<input type="submit" value="<?php _e('Delete'); ?>" name="deleteit" class="button-secondary delete" />
|
||||
<?php do_action('manage_comments_nav', $comment_status); ?>
|
||||
<?php wp_nonce_field('bulk-comments'); ?>
|
||||
<?php if ( isset($_GET['apage']) ) { ?>
|
||||
<input type="hidden" name="apage" value="<?php echo absint( $_GET['apage'] ); ?>" />
|
||||
<?php } ?>
|
||||
</div>
|
||||
|
||||
<br class="clear" />
|
||||
|
Loading…
Reference in New Issue
Block a user