What you don't know can hurt you. Don't show 'You cannot modify this taxonomy.' props johnjamesjacoby, fixes #14197.
git-svn-id: http://svn.automattic.com/wordpress/trunk@16445 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
d397326116
commit
1b3ddf631e
|
@ -300,8 +300,6 @@ function post_tags_meta_box($post, $box) {
|
|||
</div>
|
||||
<?php if ( current_user_can($taxonomy->cap->assign_terms) ) : ?>
|
||||
<p class="hide-if-no-js"><a href="#titlediv" class="tagcloud-link" id="link-<?php echo $tax_name; ?>"><?php echo $taxonomy->labels->choose_from_most_used; ?></a></p>
|
||||
<?php else : ?>
|
||||
<p><em><?php _e('You cannot modify this taxonomy.'); ?></em></p>
|
||||
<?php endif; ?>
|
||||
<?php
|
||||
}
|
||||
|
@ -345,9 +343,6 @@ function post_categories_meta_box( $post, $box ) {
|
|||
<?php wp_terms_checklist($post->ID, array( 'taxonomy' => $taxonomy, 'popular_cats' => $popular_ids ) ) ?>
|
||||
</ul>
|
||||
</div>
|
||||
<?php if ( !current_user_can($tax->cap->assign_terms) ) : ?>
|
||||
<p><em><?php _e('You cannot modify this taxonomy.'); ?></em></p>
|
||||
<?php endif; ?>
|
||||
<?php if ( current_user_can($tax->cap->edit_terms) ) : ?>
|
||||
<div id="<?php echo $taxonomy; ?>-adder" class="wp-hidden-children">
|
||||
<h4>
|
||||
|
|
Loading…
Reference in New Issue