bug fixed: add test on $_POST['list']

problem when clicking on validate-all or remove-all 
and when the list of waiting is empty


git-svn-id: http://piwigo.org/svn/branches/branch-1_6@1235 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
nikrou
2006-04-21 19:36:53 +00:00
parent 289ae2a469
commit 55ea2a8d54

View File

@@ -65,11 +65,11 @@ if (isset($_POST))
}
}
}
else if (isset($_POST['validate-all']))
elseif (isset($_POST['validate-all']) and !empty($_POST['list']))
{
$to_validate = explode(',', $_POST['list']);
}
else if (isset($_POST['reject-all']))
elseif (isset($_POST['reject-all']) and !empty($_POST['list']))
{
$to_reject = explode(',', $_POST['list']);
}