Changeset 4656 for branches/2.0/wp-admin/categories.php
- Timestamp:
- 12/21/2006 10:10:04 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.0/wp-admin/categories.php
r4470 r4656 70 70 <tr> 71 71 <th width="33%" scope="row"><?php _e('Category name:') ?></th> 72 <td width="67%"><input name="cat_name" type="text" value="<?php echo wp_specialchars($category->cat_name); ?>" size="40" /> <input type="hidden" name="action" value="editedcat" />72 <td width="67%"><input name="cat_name" type="text" value="<?php echo attribute_escape($category->cat_name); ?>" size="40" /> <input type="hidden" name="action" value="editedcat" /> 73 73 <input type="hidden" name="cat_ID" value="<?php echo $category->cat_ID ?>" /></td> 74 74 </tr> 75 75 <tr> 76 76 <th scope="row"><?php _e('Category slug:') ?></th> 77 <td><input name="category_nicename" type="text" value="<?php echo wp_specialchars($category->category_nicename); ?>" size="40" /></td>77 <td><input name="category_nicename" type="text" value="<?php echo attribute_escape($category->category_nicename); ?>" size="40" /></td> 78 78 </tr> 79 79 <tr> … … 87 87 <tr> 88 88 <th scope="row"><?php _e('Description:') ?></th> 89 <td><textarea name="category_description" rows="5" cols="50" style="width: 97%;"><?php echo wp_specialchars($category->category_description , 1); ?></textarea></td>89 <td><textarea name="category_description" rows="5" cols="50" style="width: 97%;"><?php echo wp_specialchars($category->category_description); ?></textarea></td> 90 90 </tr> 91 91 </table>
Note: See TracChangeset
for help on using the changeset viewer.