]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/edit-link-category-form.php
Wordpress 3.0.6
[autoinstalls/wordpress.git] / wp-admin / edit-link-category-form.php
index df1727d6e0fa743abeba5198a088eb562229227d..7e7c004c4d0d1b09825e2de11d5bda85a9a2deaf 100644 (file)
@@ -11,7 +11,7 @@ if ( !defined('ABSPATH') )
        die('-1');
 
 if ( !current_user_can('manage_categories') )
        die('-1');
 
 if ( !current_user_can('manage_categories') )
-       wp_die(__('You do not have sufficient permissions to edit link categories for this blog.'));
+       wp_die(__('You do not have sufficient permissions to edit link categories for this site.'));
 
 /**
  * @var object
 
 /**
  * @var object
@@ -72,14 +72,17 @@ _fill_empty_link_category($category);
                        <th scope="row" valign="top"><label for="name"><?php _e('Link Category name') ?></label></th>
                        <td><input name="name" id="name" type="text" value="<?php echo esc_attr($category->name); ?>" size="40" aria-required="true" /></td>
                </tr>
                        <th scope="row" valign="top"><label for="name"><?php _e('Link Category name') ?></label></th>
                        <td><input name="name" id="name" type="text" value="<?php echo esc_attr($category->name); ?>" size="40" aria-required="true" /></td>
                </tr>
+<?php if ( !is_multisite() ) { ?>
                <tr class="form-field">
                        <th scope="row" valign="top"><label for="slug"><?php _e('Link Category slug') ?></label></th>
                        <td><input name="slug" id="slug" type="text" value="<?php echo esc_attr(apply_filters('editable_slug', $category->slug)); ?>" size="40" /><br />
             <?php _e('The &#8220;slug&#8221; is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens.'); ?></td>
                </tr>
                <tr class="form-field">
                        <th scope="row" valign="top"><label for="slug"><?php _e('Link Category slug') ?></label></th>
                        <td><input name="slug" id="slug" type="text" value="<?php echo esc_attr(apply_filters('editable_slug', $category->slug)); ?>" size="40" /><br />
             <?php _e('The &#8220;slug&#8221; is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens.'); ?></td>
                </tr>
+<?php } ?>
                <tr class="form-field">
                        <th scope="row" valign="top"><label for="description"><?php _e('Description (optional)') ?></label></th>
                <tr class="form-field">
                        <th scope="row" valign="top"><label for="description"><?php _e('Description (optional)') ?></label></th>
-                       <td><textarea name="description" id="description" rows="5" cols="50" style="width: 97%;"><?php echo $category->description; ?></textarea></td>
+                       <td><textarea name="description" id="description" rows="5" cols="50" style="width: 97%;"><?php echo $category->description; ?></textarea><br />
+                       <span class="description"><?php _e('The description is not prominent by default; however, some themes may show it.'); ?></span></td>
                </tr>
                <?php do_action('edit_link_category_form_fields', $category); ?>
        </table>
                </tr>
                <?php do_action('edit_link_category_form_fields', $category); ?>
        </table>