Changeset 29820
- Timestamp:
- 10/02/2014 07:39:14 PM (12 years ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 2 edited
-
edit-tag-form.php (modified) (1 diff)
-
user-edit.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/edit-tag-form.php
r29803 r29820 115 115 <tr class="form-field term-description-wrap"> 116 116 <th scope="row"><label for="description"><?php _ex('Description', 'Taxonomy Description'); ?></label></th> 117 <td><textarea name="description" id="description" rows="5" cols="50" class="large-text"><?php echo $tag->description; // textarea_escaped ?></textarea> <br />118 < span class="description"><?php _e('The description is not prominent by default; however, some themes may show it.'); ?></span></td>117 <td><textarea name="description" id="description" rows="5" cols="50" class="large-text"><?php echo $tag->description; // textarea_escaped ?></textarea> 118 <p class="description"><?php _e('The description is not prominent by default; however, some themes may show it.'); ?></p></td> 119 119 </tr> 120 120 <?php -
trunk/src/wp-admin/user-edit.php
r29804 r29820 447 447 <tr class="user-description-wrap"> 448 448 <th><label for="description"><?php _e('Biographical Info'); ?></label></th> 449 <td><textarea name="description" id="description" rows="5" cols="30"><?php echo $profileuser->description; // textarea_escaped ?></textarea> <br />450 < span class="description"><?php _e('Share a little biographical information to fill out your profile. This may be shown publicly.'); ?></span></td>449 <td><textarea name="description" id="description" rows="5" cols="30"><?php echo $profileuser->description; // textarea_escaped ?></textarea> 450 <p class="description"><?php _e('Share a little biographical information to fill out your profile. This may be shown publicly.'); ?></p></td> 451 451 </tr> 452 452 … … 460 460 <td> 461 461 <input class="hidden" value=" " /><!-- #24364 workaround --> 462 <input type="password" name="pass1" id="pass1" class="regular-text" size="16" value="" autocomplete="off" /> <br />463 < span class="description"><?php _e( 'If you would like to change the password type a new one. Otherwise leave this blank.' ); ?></span>462 <input type="password" name="pass1" id="pass1" class="regular-text" size="16" value="" autocomplete="off" /> 463 <p class="description"><?php _e( 'If you would like to change the password type a new one. Otherwise leave this blank.' ); ?></p> 464 464 </td> 465 465 </tr> … … 467 467 <th scope="row"><label for="pass2"><?php _e( 'Repeat New Password' ); ?></label></th> 468 468 <td> 469 <input name="pass2" type="password" id="pass2" class="regular-text" size="16" value="" autocomplete="off" /> <br />470 < span class="description" for="pass2"><?php _e( 'Type your new password again.' ); ?></span>469 <input name="pass2" type="password" id="pass2" class="regular-text" size="16" value="" autocomplete="off" /> 470 <p class="description"><?php _e( 'Type your new password again.' ); ?></p> 471 471 <br /> 472 472 <div id="pass-strength-result"><?php _e( 'Strength indicator' ); ?></div>
Note: See TracChangeset
for help on using the changeset viewer.