]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/link.php
Wordpress 3.0.5
[autoinstalls/wordpress.git] / wp-admin / link.php
index c387a87646290973c2dcfdee0faa7da892fd1a61..1eca284631a8f2510e1d35d435053fa5e526b164 100644 (file)
@@ -1,17 +1,28 @@
 <?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[]'));
 
 if ( ! current_user_can('manage_links') )
-       wp_die( __('You do not have sufficient permissions to edit the links for this blog.') );
+       wp_die( __('You do not have sufficient permissions to edit the links for this site.') );
 
-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';
 
@@ -56,9 +67,11 @@ switch ($action) {
        case 'add' :
                check_admin_referer('add-bookmark');
 
-               add_link();
+               $redir = wp_get_referer();
+               if ( add_link() )
+                       $redir = add_query_arg( 'added', 'true', $redir );
 
-               wp_redirect( wp_get_referer() . '?added=true' );
+               wp_redirect( $redir );
                exit;
                break;
 
@@ -86,7 +99,7 @@ switch ($action) {
                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');
 
@@ -95,7 +108,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 +115,4 @@ switch ($action) {
        default :
                break;
 }
-?>
\ No newline at end of file
+?>