Changeset 9390 for trunk/wp-admin/options-permalink.php
- Timestamp:
- 10/28/2008 10:07:39 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/options-permalink.php
r9369 r9390 173 173 </th> 174 174 <td> 175 <input name="permalink_structure" id="permalink_structure" type="text" class="code" style="width: 60%;" value="<?php echo attribute_escape($permalink_structure); ?>" size="50" />175 <input name="permalink_structure" id="permalink_structure" type="text" value="<?php echo attribute_escape($permalink_structure); ?>" class="regular-text code" /> 176 176 </td> 177 177 </tr> … … 188 188 <tr> 189 189 <th><label for="category_base"><?php _e('Category base'); ?></label></th> 190 <td><input name="category_base" id="category_base" type="text" class="code" value="<?php echo attribute_escape($category_base); ?>" size="30" /></td>190 <td><input name="category_base" id="category_base" type="text" value="<?php echo attribute_escape($category_base); ?>" class="regular-text code" /></td> 191 191 </tr> 192 192 <tr> 193 193 <th><label for="tag_base"><?php _e('Tag base'); ?></label></th> 194 <td><input name="tag_base" id="tag_base" type="text" class="code" value="<?php echo attribute_escape($tag_base); ?>" size="30" /></td>194 <td><input name="tag_base" id="tag_base" type="text" value="<?php echo attribute_escape($tag_base); ?>" class="regular-text code" /></td> 195 195 </tr> 196 196 <?php do_settings_fields('permalink', 'optional'); ?> … … 207 207 <form action="options-permalink.php" method="post"> 208 208 <?php wp_nonce_field('update-permalink') ?> 209 <p><textarea rows=" 5" style="width: 98%;" name="rules" id="rules"><?php echo wp_specialchars($wp_rewrite->mod_rewrite_rules()); ?></textarea></p>209 <p><textarea rows="6" class="large-text readonly" name="rules" id="rules" readonly="readonly"><?php echo wp_specialchars($wp_rewrite->mod_rewrite_rules()); ?></textarea></p> 210 210 </form> 211 211 <?php endif; ?>
Note: See TracChangeset
for help on using the changeset viewer.