Changeset 11109 for trunk/wp-admin/edit-tag-form.php
- Timestamp:
- 04/28/2009 05:58:45 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-tag-form.php
r10903 r11109 22 22 <input type="hidden" name="action" value="editedtag" /> 23 23 <input type="hidden" name="tag_ID" value="<?php echo $tag->term_id ?>" /> 24 <input type="hidden" name="taxonomy" value="<?php echo attr ibute_escape($taxonomy) ?>" />24 <input type="hidden" name="taxonomy" value="<?php echo attr($taxonomy) ?>" /> 25 25 <?php wp_original_referer_field(true, 'previous'); wp_nonce_field('update-tag_' . $tag_ID); ?> 26 26 <table class="form-table"> 27 27 <tr class="form-field form-required"> 28 28 <th scope="row" valign="top"><label for="name"><?php _e('Tag name') ?></label></th> 29 <td><input name="name" id="name" type="text" value="<?php if ( isset( $tag->name ) ) echo attr ibute_escape($tag->name); ?>" size="40" aria-required="true" />29 <td><input name="name" id="name" type="text" value="<?php if ( isset( $tag->name ) ) echo attr($tag->name); ?>" size="40" aria-required="true" /> 30 30 <p><?php _e('The name is how the tag appears on your site.'); ?></p></td> 31 31 </tr> 32 32 <tr class="form-field"> 33 33 <th scope="row" valign="top"><label for="slug"><?php _e('Tag slug') ?></label></th> 34 <td><input name="slug" id="slug" type="text" value="<?php if ( isset( $tag->slug ) ) echo attr ibute_escape(apply_filters('editable_slug', $tag->slug)); ?>" size="40" />34 <td><input name="slug" id="slug" type="text" value="<?php if ( isset( $tag->slug ) ) echo attr(apply_filters('editable_slug', $tag->slug)); ?>" size="40" /> 35 35 <p><?php _e('The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens.'); ?></p></td> 36 36 </tr>
Note: See TracChangeset
for help on using the changeset viewer.