Changeset 6845
- Timestamp:
- 02/14/08 06:18:17 (9 months ago)
- Files:
-
- trunk/wp-admin/edit-category-form.php (modified) (2 diffs)
- trunk/wp-admin/edit-link-category-form.php (modified) (1 diff)
- trunk/wp-admin/edit-tag-form.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wp-admin/edit-category-form.php
r6303 r6845 24 24 <input type="hidden" name="cat_ID" value="<?php echo $category->term_id ?>" /> 25 25 <?php wp_nonce_field($nonce_action); ?> 26 <table class=" editform" width="100%" cellspacing="2" cellpadding="5">26 <table class="niceblue" width="100%"> 27 27 <tr class="form-field form-required"> 28 <th width="33%" scope="row" valign="top"><label for="cat_name"><?php _e('Category name:') ?></label></th>29 <td width="67%"><input name="cat_name" id="cat_name" type="text" value="<?php echo attribute_escape($category->name); ?>" size="40" /></td>28 <th scope="row" valign="top"><label for="cat_name"><?php _e('Category Name') ?></label></th> 29 <td><input name="cat_name" id="cat_name" type="text" value="<?php echo attribute_escape($category->name); ?>" size="40" /></td> 30 30 </tr> 31 31 <tr class="form-field"> 32 <th scope="row" valign="top"><label for="category_nicename"><?php _e('Category slug:') ?></label></th>32 <th scope="row" valign="top"><label for="category_nicename"><?php _e('Category Slug') ?></label></th> 33 33 <td><input name="category_nicename" id="category_nicename" type="text" value="<?php echo attribute_escape($category->slug); ?>" size="40" /></td> 34 34 </tr> 35 35 <tr class="form-field"> 36 <th scope="row" valign="top"><label for="category_parent"><?php _e('Category parent:') ?></label></th>36 <th scope="row" valign="top"><label for="category_parent"><?php _e('Category Parent') ?></label></th> 37 37 <td> 38 38 <?php wp_dropdown_categories('hide_empty=0&name=category_parent&orderby=name&selected=' . $category->parent . '&hierarchical=1&show_option_none=' . __('None')); ?> … … 40 40 </tr> 41 41 <tr class="form-field"> 42 <th scope="row" valign="top"><label for="category_description"><?php _e('Description :(optional)') ?></label></th>42 <th scope="row" valign="top"><label for="category_description"><?php _e('Description (optional)') ?></label></th> 43 43 <td><textarea name="category_description" id="category_description" rows="5" cols="50" style="width: 97%;"><?php echo wp_specialchars($category->description); ?></textarea></td> 44 44 </tr> trunk/wp-admin/edit-link-category-form.php
r6303 r6845 24 24 <input type="hidden" name="cat_ID" value="<?php echo $category->term_id ?>" /> 25 25 <?php wp_nonce_field($nonce_action); ?> 26 <table class=" editform" width="100%" cellspacing="2" cellpadding="5">26 <table class="niceblue" width="100%"> 27 27 <tr class="form-field form-required"> 28 <th width="33%"scope="row" valign="top"><label for="name"><?php _e('Category name:') ?></label></th>29 <td width="67%"><input name="name" id="name" type="text" value="<?php echo $category->name; ?>" size="40" /></td>28 <th scope="row" valign="top"><label for="name"><?php _e('Category name:') ?></label></th> 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"> trunk/wp-admin/edit-tag-form.php
r6660 r6845 24 24 <input type="hidden" name="tag_ID" value="<?php echo $tag->term_id ?>" /> 25 25 <?php wp_nonce_field($nonce_action); ?> 26 <table class=" editform" width="100%" cellspacing="2" cellpadding="5">26 <table class="niceblue" width="100%"> 27 27 <tr class="form-field form-required"> 28 <th width="33%"scope="row" valign="top"><label for="name"><?php _e('Tag name:') ?></label></th>29 <td width="67%"><input name="name" id="name" type="text" value="<?php echo attribute_escape($tag->name); ?>" size="40" /></td>28 <th scope="row" valign="top"><label for="name"><?php _e('Tag name:') ?></label></th> 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">
