mirror of
https://github.com/WordPress/WordPress.git
synced 2025-02-02 13:41:24 +01:00
Stirng capitalization fix. see #12035.
git-svn-id: http://svn.automattic.com/wordpress/trunk@14894 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
affcbfcd4d
commit
655eedbb42
@ -271,7 +271,7 @@ function post_tags_meta_box($post, $box) {
|
|||||||
<?php if ( current_user_can($taxonomy->cap->assign_terms) ) : ?>
|
<?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 $help_cloud; ?></a></p>
|
<p class="hide-if-no-js"><a href="#titlediv" class="tagcloud-link" id="link-<?php echo $tax_name; ?>"><?php echo $help_cloud; ?></a></p>
|
||||||
<?php else : ?>
|
<?php else : ?>
|
||||||
<p><em><?php _e('You cannot modify this Taxonomy.'); ?></em></p>
|
<p><em><?php _e('You cannot modify this taxonomy.'); ?></em></p>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
@ -316,7 +316,7 @@ function post_categories_meta_box( $post, $box ) {
|
|||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<?php if ( !current_user_can($tax->cap->assign_terms) ) : ?>
|
<?php if ( !current_user_can($tax->cap->assign_terms) ) : ?>
|
||||||
<p><em><?php _e('You cannot modify this Taxonomy.'); ?></em></p>
|
<p><em><?php _e('You cannot modify this taxonomy.'); ?></em></p>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
<?php if ( current_user_can($tax->cap->edit_terms) ) : ?>
|
<?php if ( current_user_can($tax->cap->edit_terms) ) : ?>
|
||||||
<div id="<?php echo $taxonomy; ?>-adder" class="wp-hidden-children">
|
<div id="<?php echo $taxonomy; ?>-adder" class="wp-hidden-children">
|
||||||
|
Loading…
Reference in New Issue
Block a user