Changeset 10775 for trunk/wp-admin/edit-tags.php
- Timestamp:
- 03/13/2009 05:24:20 AM (17 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/edit-tags.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-tags.php
r10569 r10775 53 53 wp_delete_term( $tag_ID, $taxonomy); 54 54 55 wp_redirect('edit-tags.php?message=2'); 55 $location = 'edit-tags.php'; 56 if ( $referer = wp_get_referer() ) { 57 if ( false !== strpos($referer, 'edit-tags.php') ) 58 $location = $referer; 59 } 60 61 $location = add_query_arg('message', 2, $location); 62 wp_redirect($location); 56 63 exit; 57 64 … … 272 279 <label for="name"><?php _e('Tag name') ?></label> 273 280 <input name="name" id="name" type="text" value="" size="40" aria-required="true" /> 274 <p><?php _e('The name is how the tag appears on your site.'); ?></p>281 <p><?php _e('The name is how the tag appears on your site.'); ?></p> 275 282 </div> 276 283 … … 278 285 <label for="slug"><?php _e('Tag slug') ?></label> 279 286 <input name="slug" id="slug" type="text" value="" size="40" /> 280 <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>287 <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> 281 288 </div> 282 289
Note: See TracChangeset
for help on using the changeset viewer.