Changeset 9506 for trunk/wp-admin/edit-link-categories.php
- Timestamp:
- 11/04/2008 03:22:24 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-link-categories.php
r9481 r9506 181 181 <div class="col-wrap"> 182 182 183 <?php if ( current_user_can('manage_categories') ) {183 <?php if ( isset( $category ) && current_user_can('manage_categories') ) { 184 184 $category = (object) array(); $category->parent = 0; do_action('add_link_category_form_pre', $category); ?> 185 185 … … 199 199 <label for="slug"><?php _e('Category slug') ?></label> 200 200 <input name="slug" id="slug" type="text" value="" size="40" /> 201 201 <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> 202 202 </div> 203 203
Note: See TracChangeset
for help on using the changeset viewer.