merge r17561

bug:2719
no need to array diff : the system check after to not reinsert existing lines 

git-svn-id: http://piwigo.org/svn/branches/2.4@17857 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
flop25 2012-09-11 11:48:01 +00:00
parent 53a0522894
commit 7a0b5fc3b5

View file

@ -90,7 +90,7 @@ DELETE
//
// add permissions to groups
//
$grant_groups = array_diff($_POST['groups'], $groups_granted);
$grant_groups = $_POST['groups'];
if (count($grant_groups) > 0)
{
$cat_ids = get_uppercat_ids(array($page['cat']));
@ -183,7 +183,7 @@ DELETE
//
// add permissions to users
//
$grant_users = array_diff($_POST['users'], $users_granted);
$grant_users = $_POST['users'];
if (count($grant_users) > 0)
{
add_permission_on_category($page['cat'], $grant_users);