]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/link.php
Wordpress 2.8-scripts
[autoinstalls/wordpress.git] / wp-admin / link.php
index 1d7e4d6a6f0b4d714ec7580cc1d71a37a942fc1b..73ba281492a50b24e59ce1fcac9ce73b2527e6a9 100644 (file)
@@ -1,4 +1,15 @@
 <?php
+/**
+ * Manage link administration actions.
+ *
+ * This page is accessed by the link management pages and handles the forms and
+ * AJAX processes for link actions.
+ *
+ * @package WordPress
+ * @subpackage Administration
+ */
+
+/** Load WordPress Administration Bootstrap */
 require_once ('admin.php');
 
 wp_reset_vars(array('action', 'cat_id', 'linkurl', 'name', 'image', 'description', 'visible', 'target', 'category', 'link_id', 'submit', 'order_by', 'links_show_cat_id', 'rating', 'rel', 'notes', 'linkcheck[]'));
@@ -6,12 +17,12 @@ wp_reset_vars(array('action', 'cat_id', 'linkurl', 'name', 'image', 'description
 if ( ! current_user_can('manage_links') )
        wp_die( __('You do not have sufficient permissions to edit the links for this blog.') );
 
-if ('' != $_POST['deletebookmarks'])
+if ( !empty($_POST['deletebookmarks']) )
        $action = 'deletebookmarks';
-if ('' != $_POST['move'])
+if ( !empty($_POST['move']) )
        $action = 'move';
-if ('' != $_POST['linkcheck'])
-       $linkcheck = $_POST[linkcheck];
+if ( !empty($_POST['linkcheck']) )
+       $linkcheck = $_POST['linkcheck'];
 
 $this_file = 'link-manager.php';
 
@@ -83,9 +94,9 @@ switch ($action) {
                break;
 
        case 'edit' :
-               wp_enqueue_script( array('xfn', 'dbx-admin-key?pagenow=link.php') );
-               if ( current_user_can( 'manage_categories' ) )
-                       wp_enqueue_script( 'ajaxlinkcat' );
+               wp_enqueue_script('link');
+               wp_enqueue_script('xfn');
+
                $parent_file = 'link-manager.php';
                $submenu_file = 'link-manager.php';
                $title = __('Edit Link');
@@ -95,7 +106,6 @@ switch ($action) {
                if (!$link = get_link_to_edit($link_id))
                        wp_die(__('Link not found.'));
 
-               include_once ('admin-header.php');
                include ('edit-link-form.php');
                include ('admin-footer.php');
                break;
@@ -103,4 +113,4 @@ switch ($action) {
        default :
                break;
 }
-?>
\ No newline at end of file
+?>