Remove cat/tag importer from list of tools. see #13465

git-svn-id: http://svn.automattic.com/wordpress/trunk@14778 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2010-05-21 14:17:41 +00:00
parent bde0019142
commit 52b3a741d5

View File

@ -30,17 +30,6 @@ require_once('./admin-header.php');
<?php
endif;
$cats = get_taxonomy('category');
$tags = get_taxonomy('post_tag');
if ( current_user_can($cats->cap->manage_terms) || current_user_can($tags->cap->manage_terms) ) : ?>
<div class="tool-box">
<h3 class="title"><?php _e('Category&#47;Tag Conversion') ?></h3>
<p><?php printf(__('Use this to convert <a href="%s">categories to tags</a>, or <a href="%s">tags to categories</a>.'), 'admin.php?import=wp-cat2tag', 'admin.php?import=wp-cat2tag&amp;step=3'); ?></p>
</div>
<?php
endif;
do_action( 'tool_box' );
?>
</div>