Ticket #11644: 11644.changes.r12712.diff
| File 11644.changes.r12712.diff, 2.5 KB (added by , 16 years ago) |
|---|
-
wp-admin/admin.php
60 60 61 61 set_screen_options(); 62 62 63 $posts_per_page = get_option('posts_per_page');64 63 $date_format = get_option('date_format'); 65 64 $time_format = get_option('time_format'); 66 65 -
wp-admin/categories.php
297 297 <input name="cat_name" id="cat_name" type="text" value="" size="40" aria-required="true" /> 298 298 <p><?php _e('The name is used to identify the category almost everywhere, for example under the post or in the category widget.'); ?></p> 299 299 </div> 300 <?php if ( is_multisite() ) { ?>300 <?php if ( ! is_multisite() ) { ?> 301 301 <div class="form-field"> 302 302 <label for="category_nicename"><?php _e('Category Slug') ?></label> 303 303 <input name="category_nicename" id="category_nicename" type="text" value="" size="40" /> -
wp-admin/edit-category-form.php
58 58 <th scope="row" valign="top"><label for="cat_name"><?php _e('Category Name') ?></label></th> 59 59 <td><input name="cat_name" id="cat_name" type="text" value="<?php echo esc_attr($category->name); ?>" size="40" aria-required="true" /></td> 60 60 </tr> 61 <?php if ( is_multisite() ) { ?>61 <?php if ( ! is_multisite() ) { ?> 62 62 <tr class="form-field"> 63 63 <th scope="row" valign="top"><label for="category_nicename"><?php _e('Category Slug') ?></label></th> 64 64 <td><input name="category_nicename" id="category_nicename" type="text" value="<?php echo esc_attr(apply_filters('editable_slug', $category->slug)); ?>" size="40" /><br /> -
wp-admin/edit-link-categories.php
200 200 <label for="name"><?php _e('Link Category name') ?></label> 201 201 <input name="name" id="name" type="text" value="" size="40" aria-required="true" /> 202 202 </div> 203 <?php if ( is_multisite() ) { ?>203 <?php if ( ! is_multisite() ) { ?> 204 204 <div class="form-field"> 205 205 <label for="slug"><?php _e('Link Category slug') ?></label> 206 206 <input name="slug" id="slug" type="text" value="" size="40" />