]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/link.php
WordPress 4.1.2
[autoinstalls/wordpress.git] / wp-admin / link.php
index 1b27ce7de72c4074f1ec81fcaf472c6bbfa841b0..802745fc2c4e28ebaa48c44e4c3b1b8aa4b1a2da 100644 (file)
@@ -30,7 +30,7 @@ switch ($action) {
        case 'deletebookmarks' :
                check_admin_referer('bulk-bookmarks');
 
-               //for each link id (in $linkcheck[]) change category to selected value
+               // For each link id (in $linkcheck[]) change category to selected value.
                if (count($linkcheck) == 0) {
                        wp_redirect($this_file);
                        exit;
@@ -46,23 +46,23 @@ switch ($action) {
 
                wp_redirect("$this_file?deleted=$deleted");
                exit;
-               break;
 
        case 'move' :
                check_admin_referer('bulk-bookmarks');
 
-               //for each link id (in $linkcheck[]) change category to selected value
+               // For each link id (in $linkcheck[]) change category to selected value.
                if (count($linkcheck) == 0) {
                        wp_redirect($this_file);
                        exit;
                }
                $all_links = join(',', $linkcheck);
-               // should now have an array of links we can change
-               //$q = $wpdb->query("update $wpdb->links SET link_category='$category' WHERE link_id IN ($all_links)");
+               /*
+                * Should now have an array of links we can change:
+                *     $q = $wpdb->query("update $wpdb->links SET link_category='$category' WHERE link_id IN ($all_links)");
+                */
 
                wp_redirect($this_file);
                exit;
-               break;
 
        case 'add' :
                check_admin_referer('add-bookmark');
@@ -73,7 +73,6 @@ switch ($action) {
 
                wp_redirect( $redir );
                exit;
-               break;
 
        case 'save' :
                $link_id = (int) $_POST['link_id'];
@@ -83,7 +82,6 @@ switch ($action) {
 
                wp_redirect($this_file);
                exit;
-               break;
 
        case 'delete' :
                $link_id = (int) $_GET['link_id'];
@@ -93,7 +91,6 @@ switch ($action) {
 
                wp_redirect($this_file);
                exit;
-               break;
 
        case 'edit' :
                wp_enqueue_script('link');