]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/link.php
Wordpress 2.8-scripts
[autoinstalls/wordpress.git] / wp-admin / link.php
index c387a87646290973c2dcfdee0faa7da892fd1a61..73ba281492a50b24e59ce1fcac9ce73b2527e6a9 100644 (file)
@@ -1,4 +1,15 @@
 <?php
 <?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[]'));
 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 ( ! 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';
        $action = 'deletebookmarks';
-if ('' != $_POST['move'])
+if ( !empty($_POST['move']) )
        $action = 'move';
        $action = 'move';
-if ('' != $_POST['linkcheck'])
-       $linkcheck = $_POST[linkcheck];
+if ( !empty($_POST['linkcheck']) )
+       $linkcheck = $_POST['linkcheck'];
 
 $this_file = 'link-manager.php';
 
 
 $this_file = 'link-manager.php';
 
@@ -86,7 +97,7 @@ switch ($action) {
                wp_enqueue_script('link');
                wp_enqueue_script('xfn');
 
                wp_enqueue_script('link');
                wp_enqueue_script('xfn');
 
-               $parent_file = 'edit.php';
+               $parent_file = 'link-manager.php';
                $submenu_file = 'link-manager.php';
                $title = __('Edit Link');
 
                $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.'));
 
                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;
                include ('edit-link-form.php');
                include ('admin-footer.php');
                break;
@@ -103,4 +113,4 @@ switch ($action) {
        default :
                break;
 }
        default :
                break;
 }
-?>
\ No newline at end of file
+?>