summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2008-09-16 17:03:26 +0000
committerdonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2008-09-16 17:03:26 +0000
commit673c02f18a31d5ddf58f6f1d5230f1e336877161 (patch)
tree24efb1c6bf0fabce506343d553c19e3246805183
parent1c47e3df85a1caa1d99c897a444e540395746d34 (diff)
downloadwordpress-mu-673c02f18a31d5ddf58f6f1d5230f1e336877161.tar.gz
wordpress-mu-673c02f18a31d5ddf58f6f1d5230f1e336877161.tar.xz
wordpress-mu-673c02f18a31d5ddf58f6f1d5230f1e336877161.zip
Remove tag slug, fixes #739
git-svn-id: http://svn.automattic.com/wordpress-mu/branches/2.6@1477 7be80a69-a1ef-0310-a953-fb0f7c49ff36
-rw-r--r--wp-admin/edit-tag-form.php5
1 files changed, 0 insertions, 5 deletions
diff --git a/wp-admin/edit-tag-form.php b/wp-admin/edit-tag-form.php
index de0f6c8..087873c 100644
--- a/wp-admin/edit-tag-form.php
+++ b/wp-admin/edit-tag-form.php
@@ -29,11 +29,6 @@ if ( ! empty($tag_ID) ) {
<td><input name="name" id="name" type="text" value="<?php echo attribute_escape($tag->name); ?>" size="40" aria-required="true" />
<p><?php _e('The name is how the tag appears on your site.'); ?></p></td>
</tr>
- <tr class="form-field">
- <th scope="row" valign="top"><label for="slug"><?php _e('Tag slug') ?></label></th>
- <td><input name="slug" id="slug" type="text" value="<?php echo attribute_escape(apply_filters('editable_slug', $tag->slug)); ?>" size="40" />
- <p><?php _e('The &#8220;slug&#8221; is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens.'); ?></p></td>
- </tr>
</table>
<p class="submit"><input type="submit" class="button" name="submit" value="<?php echo $submit_text ?>" /></p>
<?php do_action('edit_tag_form', $tag); ?>