Changeset 13852
- Timestamp:
- 03/28/2010 01:42:34 AM (14 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-link-categories.php
r13770 r13852 199 199 <div class="form-field form-required"> 200 200 <label for="name"><?php _e('Link Category name') ?></label> 201 <input name="name" id=" name" type="text" value="" size="40" aria-required="true" />201 <input name="name" id="link-name" type="text" value="" size="40" aria-required="true" /> 202 202 </div> 203 203 <?php if ( !global_terms_enabled() ) { ?> 204 204 <div class="form-field"> 205 205 <label for="slug"><?php _e('Link Category slug') ?></label> 206 <input name="slug" id=" slug" type="text" value="" size="40" />206 <input name="slug" id="link-slug" type="text" value="" size="40" /> 207 207 <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> 208 208 </div> … … 210 210 <div class="form-field"> 211 211 <label for="description"><?php _e('Description (optional)') ?></label> 212 <textarea name="description" id=" description" rows="5" cols="40"></textarea>212 <textarea name="description" id="link-description" rows="5" cols="40"></textarea> 213 213 <p><?php _e('The description is not prominent by default; however, some themes may show it.'); ?></p> 214 214 </div> -
trunk/wp-admin/edit-tags.php
r13770 r13852 355 355 <?php if ( !is_multisite() ) : ?> 356 356 <div class="form-field"> 357 <label for=" slug"><?php echo _x('Slug', 'Taxonomy Slug'); ?></label>358 <input name="slug" id=" slug" type="text" value="" size="40" />357 <label for="tag-slug"><?php echo _x('Slug', 'Taxonomy Slug'); ?></label> 358 <input name="slug" id="tag-slug" type="text" value="" size="40" /> 359 359 <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> 360 360 </div> … … 370 370 <?php endif; // is_taxonomy_hierarchical() ?> 371 371 <div class="form-field"> 372 <label for=" description"><?php echo _x('Description', 'Taxonomy Description'); ?></label>373 <textarea name="description" id=" description" rows="5" cols="40"></textarea>372 <label for="tag-description"><?php echo _x('Description', 'Taxonomy Description'); ?></label> 373 <textarea name="description" id="tag-description" rows="5" cols="40"></textarea> 374 374 <p><?php _e('The description is not prominent by default; however, some themes may show it.'); ?></p> 375 375 </div>
Note: See TracChangeset
for help on using the changeset viewer.