Change is_multisite check for hiding a term slug on edit-tags.php to checking for global terms.

git-svn-id: https://develop.svn.wordpress.org/trunk@14594 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2010-05-13 04:12:57 +00:00
parent 4f689c8309
commit a56d439b4d
1 changed files with 1 additions and 1 deletions

View File

@ -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" />