Changeset 9032 for trunk/wp-admin/edit-tag-form.php
- Timestamp:
- 09/29/2008 10:06:23 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-tag-form.php
r8944 r9032 11 11 * @var string 12 12 */ 13 $heading = __('Edit Tag');13 $heading = ''; 14 14 $submit_text = __('Edit Tag'); 15 15 $form = '<form name="edittag" id="edittag" method="post" action="edit-tags.php" class="validate">'; … … 18 18 do_action('edit_tag_form_pre', $tag); 19 19 } else { 20 $heading = __('Add Tag');20 $heading = '<h2>' . __('Add Tag') . '</h2>'; 21 21 $submit_text = __('Add Tag'); 22 22 $form = '<form name="addtag" id="addtag" method="post" action="edit-tags.php" class="add:the-list: validate">'; … … 28 28 29 29 <div class="wrap"> 30 < h2><?php echo $heading ?></h2>30 <?php echo $heading ?> 31 31 <div id="ajax-response"></div> 32 32 <?php echo $form ?>
Note: See TracChangeset
for help on using the changeset viewer.