mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-16 07:35:39 +01:00
Allow bulk approval of comments from the spam queue
git-svn-id: http://svn.automattic.com/wordpress/trunk@10067 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
a5c3371dcb
commit
741b31a0c6
@ -209,7 +209,7 @@ $page_links = paginate_links( array(
|
||||
<?php if ( empty($comment_status) || 'approved' == $comment_status ): ?>
|
||||
<option value="unapprove"><?php _e('Unapprove'); ?></option>
|
||||
<?php endif; ?>
|
||||
<?php if ( empty($comment_status) || 'moderated' == $comment_status ): ?>
|
||||
<?php if ( empty($comment_status) || 'moderated' == $comment_status || 'spam' == $comment_status ): ?>
|
||||
<option value="approve"><?php _e('Approve'); ?></option>
|
||||
<?php endif; ?>
|
||||
<?php if ( 'spam' != $comment_status ): ?>
|
||||
|
Loading…
Reference in New Issue
Block a user