Changeset 9032 for trunk/wp-admin/edit-category-form.php
- Timestamp:
- 09/29/2008 10:06:23 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-category-form.php
r8944 r9032 17 17 * @var string 18 18 */ 19 $heading = __('Edit Category');19 $heading = ''; 20 20 $submit_text = __('Edit Category'); 21 21 $form = '<form name="editcat" id="editcat" method="post" action="categories.php" class="validate">'; … … 24 24 do_action('edit_category_form_pre', $category); 25 25 } else { 26 $heading = __('Add Category');26 $heading = '<h2>' . __('Add Category') . '</h2>'; 27 27 $submit_text = __('Add Category'); 28 28 $form = '<form name="addcat" id="addcat" method="post" action="categories.php" class="add:the-list: validate">'; … … 57 57 58 58 <div class="wrap"> 59 < h2><?php echo $heading ?></h2>59 <?php echo $heading ?> 60 60 <div id="ajax-response"></div> 61 61 <?php echo $form ?>
Note: See TracChangeset
for help on using the changeset viewer.