mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-07-06 18:01:31 +02:00
bug:2719
no need to array diff : the system check after to not reinsert existing lines git-svn-id: http://piwigo.org/svn/trunk@17561 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
+4
-4
@@ -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']));
|
||||
@@ -98,7 +98,7 @@ DELETE
|
||||
{
|
||||
$cat_ids = array_merge($cat_ids, get_subcat_ids(array($page['cat'])));
|
||||
}
|
||||
|
||||
|
||||
$query = '
|
||||
SELECT id
|
||||
FROM '.CATEGORIES_TABLE.'
|
||||
@@ -113,7 +113,7 @@ SELECT id
|
||||
{
|
||||
$granteds[$cat_id] = array();
|
||||
}
|
||||
|
||||
|
||||
$query = '
|
||||
SELECT
|
||||
group_id,
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user