mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-22 17:18:32 +01:00
Change is_multisite check for hiding a term slug on edit-tags.php to checking for global terms.
git-svn-id: http://svn.automattic.com/wordpress/trunk@14594 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
af91e5264a
commit
44de0d4ff9
@ -352,7 +352,7 @@ if ( current_user_can($tax->cap->edit_terms) ) {
|
||||
<input name="tag-name" id="tag-name" type="text" value="" size="40" aria-required="true" />
|
||||
<p><?php _e('The name is how it appears on your site.'); ?></p>
|
||||
</div>
|
||||
<?php if ( !is_multisite() ) : ?>
|
||||
<?php if ( ! global_terms_enabled() ) : ?>
|
||||
<div class="form-field">
|
||||
<label for="tag-slug"><?php echo _x('Slug', 'Taxonomy Slug'); ?></label>
|
||||
<input name="slug" id="tag-slug" type="text" value="" size="40" />
|
||||
|
Loading…
Reference in New Issue
Block a user