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:
nacin 2010-05-13 04:12:57 +00:00
parent af91e5264a
commit 44de0d4ff9

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