Changeset 6944
- Timestamp:
- 02/20/2008 08:30:39 PM (17 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-link-category-form.php
r6943 r6944 26 26 <table class="niceblue"> 27 27 <tr class="form-field form-required"> 28 <th scope="row" valign="top"><label for="name"><?php _e('Category name :') ?></label></th>28 <th scope="row" valign="top"><label for="name"><?php _e('Category name') ?></label></th> 29 29 <td><input name="name" id="name" type="text" value="<?php echo $category->name; ?>" size="40" /></td> 30 30 </tr> 31 31 <tr class="form-field"> 32 <th scope="row" valign="top"><label for="slug"><?php _e('Category slug :') ?></label></th>32 <th scope="row" valign="top"><label for="slug"><?php _e('Category slug') ?></label></th> 33 33 <td><input name="slug" id="slug" type="text" value="<?php echo $category->slug; ?>" size="40" /></td> 34 34 </tr> 35 35 <tr class="form-field"> 36 <th scope="row" valign="top"><label for="description"><?php _e('Description :(optional)') ?></label></th>36 <th scope="row" valign="top"><label for="description"><?php _e('Description (optional)') ?></label></th> 37 37 <td><textarea name="description" id="description" rows="5" cols="50" style="width: 97%;"><?php echo $category->description; ?></textarea></td> 38 38 </tr> -
trunk/wp-admin/edit-tag-form.php
r6943 r6944 26 26 <table class="niceblue"> 27 27 <tr class="form-field form-required"> 28 <th scope="row" valign="top"><label for="name"><?php _e('Tag name :') ?></label></th>28 <th scope="row" valign="top"><label for="name"><?php _e('Tag name') ?></label></th> 29 29 <td><input name="name" id="name" type="text" value="<?php echo attribute_escape($tag->name); ?>" size="40" /></td> 30 30 </tr> 31 31 <tr class="form-field"> 32 <th scope="row" valign="top"><label for="slug"><?php _e('Tag slug :') ?></label></th>32 <th scope="row" valign="top"><label for="slug"><?php _e('Tag slug') ?></label></th> 33 33 <td><input name="slug" id="slug" type="text" value="<?php echo attribute_escape($tag->slug); ?>" size="40" /></td> 34 34 </tr> -
trunk/wp-admin/options-writing.php
r6850 r6944 65 65 <th scope="row"><?php _e('Mail Server') ?></th> 66 66 <td><input name="mailserver_url" type="text" id="mailserver_url" value="<?php form_option('mailserver_url'); ?>" size="40" /> 67 <label for="mailserver_port"><?php _e('Port :') ?></label>67 <label for="mailserver_port"><?php _e('Port') ?></label> 68 68 <input name="mailserver_port" type="text" id="mailserver_port" value="<?php form_option('mailserver_port'); ?>" size="6" /> 69 69 </td>
Note: See TracChangeset
for help on using the changeset viewer.