]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/edit-link-category-form.php
Wordpress 2.9.2-scripts
[autoinstalls/wordpress.git] / wp-admin / edit-link-category-form.php
index be52d1c01c65614bf0a9260384604a343ac21d93..17db6ef6bf861e541cdf7df253d2eecaa9371f50 100644 (file)
@@ -6,6 +6,13 @@
  * @subpackage Administration
  */
 
+// don't load directly
+if ( !defined('ABSPATH') )
+       die('-1');
+
+if ( !current_user_can('manage_categories') )
+       wp_die(__('You do not have sufficient permissions to edit link categories for this blog.'));
+
 /**
  * @var object
  */
@@ -72,8 +79,10 @@ _fill_empty_link_category($category);
                </tr>
                <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>
 <p class="submit"><input type="submit" class="button-primary" name="submit" value="<?php echo esc_attr($submit_text) ?>" /></p>
 <?php do_action('edit_link_category_form', $category); ?>