Place manage_comments_nav action after all seconday buttons

git-svn-id: http://svn.automattic.com/wordpress/trunk@8856 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2008-09-09 23:14:37 +00:00
parent 54049c5f41
commit d2b3b03d9f
1 changed files with 1 additions and 1 deletions

View File

@ -194,7 +194,6 @@ if ( $page_links )
<option value="delete"><?php _e('Delete'); ?></option>
</select>
<input type="submit" name="doaction" value="<?php _e('Apply'); ?>" class="button-secondary apply" />
<?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'] ); ?>" />
@ -204,6 +203,7 @@ if ( 'spam' == $comment_status ) {
wp_nonce_field('bulk-spam-delete'); ?>
<input type="submit" name="delete_all_spam" value="<?php _e('Delete All Spam'); ?>" class="button-secondary apply" />
<?php } ?>
<?php do_action('manage_comments_nav', $comment_status); ?>
</div>
<br class="clear" />