Move the restrict_manage_post hook back to a useful place. Fixes #6196.

git-svn-id: https://develop.svn.wordpress.org/trunk@7274 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Peter Westwood 2008-03-13 20:39:56 +00:00
parent b3c9154a13
commit 29b3ff82c1
1 changed files with 2 additions and 2 deletions

View File

@ -120,8 +120,6 @@ endif;
<input type="submit" value="<?php _e( 'Search Posts' ); ?>" class="button" />
</p>
<?php do_action('restrict_manage_posts'); ?>
<div class="tablenav">
<?php
@ -170,7 +168,9 @@ foreach ($arc_result as $arc_row) {
<?php } ?>
<?php wp_dropdown_categories('show_option_all='.__('View all categories').'&hide_empty=1&hierarchical=1&show_count=1&selected='.$cat);?>
<?php do_action('restrict_manage_posts'); ?>
<input type="submit" id="post-query-submit" value="<?php _e('Filter'); ?>" class="button-secondary" />
<?php } ?>
</div>