bug 2909 fixed: make sure the selection of private album is not empty before

adding permission to user. The good test had been removed in r11729


git-svn-id: http://piwigo.org/svn/branches/2.5@22949 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
plegall
2013-05-29 20:51:03 +00:00
parent c3c6b70f17
commit 0b739e406a
+3 -1
View File
@@ -64,7 +64,9 @@ DELETE FROM '.USER_ACCESS_TABLE.'
;';
pwg_query($query);
}
else if (isset($_POST['trueify']))
elseif (isset($_POST['trueify'])
and isset($_POST['cat_false'])
and count($_POST['cat_false']) > 0)
{
add_permission_on_category($_POST['cat_false'], $page['user']);
}