Make WordPress Core


Ignore:
Timestamp:
11/04/2008 03:22:24 AM (17 years ago)
Author:
ryan
Message:

Notice fixes from filosofo and Viper007Bond. see #7509

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/link.php

    r8697 r9506  
    1818    wp_die( __('You do not have sufficient permissions to edit the links for this blog.') );
    1919
    20 if ('' != $_POST['deletebookmarks'])
     20if ( !empty($_POST['deletebookmarks']) )
    2121    $action = 'deletebookmarks';
    22 if ('' != $_POST['move'])
     22if ( !empty($_POST['move']) )
    2323    $action = 'move';
    24 if ('' != $_POST['linkcheck'])
    25     $linkcheck = $_POST[linkcheck];
     24if ( !empty($_POST['linkcheck']) )
     25    $linkcheck = $_POST['linkcheck'];
    2626
    2727$this_file = 'link-manager.php';
Note: See TracChangeset for help on using the changeset viewer.