bug fixed: add test on $_POST['list']
problem when clicking on validate-all or remove-all and when the list of waiting is empty svn merge -r1234:1235 from branch-1_6 into trunk git-svn-id: http://piwigo.org/svn/trunk@1245 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
parent
7e317bdbc3
commit
01f80a1415
1 changed files with 2 additions and 2 deletions
|
@ -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']);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue