mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-07-01 15:50:09 +00:00
Notice fixes from filosofo and Viper007Bond. see #7509
git-svn-id: https://develop.svn.wordpress.org/trunk@9506 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -17,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 ('' != $_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';
|
||||
|
||||
@@ -114,4 +114,4 @@ switch ($action) {
|
||||
default :
|
||||
break;
|
||||
}
|
||||
?>
|
||||
?>
|
||||
|
||||
Reference in New Issue
Block a user