bug fixed: add test on $_POST['list']
problem when clicking on validate-all or remove-all and when the list of comments is empty git-svn-id: http://piwigo.org/svn/branches/branch-1_6@1151 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
parent
f239297975
commit
09e7e7f32f
1 changed files with 3 additions and 3 deletions
|
@ -45,7 +45,7 @@ if (isset($_POST))
|
|||
{
|
||||
$to_validate = array();
|
||||
$to_reject = array();
|
||||
|
||||
|
||||
if (isset($_POST['submit']))
|
||||
{
|
||||
foreach (explode(',', $_POST['list']) as $comment_id)
|
||||
|
@ -68,11 +68,11 @@ if (isset($_POST))
|
|||
}
|
||||
}
|
||||
}
|
||||
else if (isset($_POST['validate-all']))
|
||||
else if (isset($_POST['validate-all']) and !empty($_POST['list']))
|
||||
{
|
||||
$to_validate = explode(',', $_POST['list']);
|
||||
}
|
||||
else if (isset($_POST['reject-all']))
|
||||
else if (isset($_POST['reject-all']) and !empty($_POST['list']))
|
||||
{
|
||||
$to_reject = explode(',', $_POST['list']);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue