Skip to content

Commit

Permalink
Make the top and bottom comment actions dropdowns match ("Approve" wa…
Browse files Browse the repository at this point in the history
…s not appearing on bottom one). for 2.7

git-svn-id: http://svn.automattic.com/wordpress/branches/2.7@10439 1a063a9b-81f0-0310-95a4-ce76da25c4cd
  • Loading branch information
markjaquith committed Jan 26, 2009
1 parent d34a34a commit 73d12e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wp-admin/edit-comments.php
Expand Up @@ -329,7 +329,7 @@
<?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 ): ?>
Expand Down

0 comments on commit 73d12e0

Please sign in to comment.