]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/link.php
Wordpress 3.3.1-scripts
[autoinstalls/wordpress.git] / wp-admin / link.php
index 1d7e4d6a6f0b4d714ec7580cc1d71a37a942fc1b..922f96cccc4119767234c3ecb11ceef768bf1fe1 100644 (file)
@@ -1,19 +1,30 @@
 <?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';
+$this_file = admin_url('link-manager.php');
 
 switch ($action) {
        case 'deletebookmarks' :
@@ -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;
 
@@ -83,9 +96,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 +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
+?>