aboutsummaryrefslogtreecommitdiffstats
path: root/admin/cat_perm.php
diff options
context:
space:
mode:
authorflop25 <flop25@piwigo.org>2012-01-02 15:55:47 +0000
committerflop25 <flop25@piwigo.org>2012-01-02 15:55:47 +0000
commit9e95ed515d8b05072f49e9d216317a1d691d3b60 (patch)
treef158a08cdf9f0e2eb81a6be3ff5e967ae448eeb5 /admin/cat_perm.php
parent97a0c973fd73c2727679c257c6199485f89f9ac5 (diff)
checkbox "apply on sub" after the button
better "if isset" to avoid errors if no user have been selected git-svn-id: http://piwigo.org/svn/trunk@12825 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/cat_perm.php')
-rw-r--r--admin/cat_perm.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/admin/cat_perm.php b/admin/cat_perm.php
index c6e26462a..f2dbb3b4a 100644
--- a/admin/cat_perm.php
+++ b/admin/cat_perm.php
@@ -148,7 +148,9 @@ DELETE
;';
pwg_query($query);
}
-else if (isset($_POST['grant_users_submit']))
+else if (isset($_POST['grant_users_submit'])
+ and isset($_POST['grant_users'])
+ and count($_POST['grant_users']) > 0)
{
add_permission_on_category($page['cat'], $_POST['grant_users']);
}