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

git-svn-id: http://svn.automattic.com/wordpress/trunk@7274 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
westi 2008-03-13 20:39:56 +00:00
parent d1f0f9517b
commit 1567bfb195
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>