Make WordPress Core


Ignore:
Timestamp:
04/27/2007 12:47:01 AM (18 years ago)
Author:
rob1n
Message:

Add id attribute where it's only name. fixes #3696

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/options-permalink.php

    r5150 r5323  
    167167<?php endif; ?>
    168168    <p>
    169   <?php _e('Category base'); ?>: <input name="category_base" type="text" class="code"  value="<?php echo attribute_escape($category_base); ?>" size="30" />
     169  <?php _e('Category base'); ?>: <input name="category_base" id="category_base" type="text" class="code"  value="<?php echo attribute_escape($category_base); ?>" size="30" />
    170170     </p>
    171171      <p>
    172       <?php _e('Tag base'); ?>: <input name="tag_base" type="text" class="code"  value="<?php echo attribute_escape($tag_base); ?>" size="30" />
     172      <?php _e('Tag base'); ?>: <input name="tag_base" id="tag_base" type="text" class="code"  value="<?php echo attribute_escape($tag_base); ?>" size="30" />
    173173     </p>
    174174    <p class="submit">
     
    180180<form action="options-permalink.php" method="post">
    181181<?php wp_nonce_field('update-permalink') ?>
    182    <p>
    183 <textarea rows="5" style="width: 98%;" name="rules"><?php echo wp_specialchars($wp_rewrite->mod_rewrite_rules()); ?>
    184 </textarea>
    185     </p>
     182    <p><textarea rows="5" style="width: 98%;" name="rules" id="rules"><?php echo wp_specialchars($wp_rewrite->mod_rewrite_rules()); ?></textarea></p>
    186183</form>
    187184<?php endif; ?>
Note: See TracChangeset for help on using the changeset viewer.