aboutsummaryrefslogtreecommitdiffstats
path: root/include/ws_functions/pwg.groups.php
diff options
context:
space:
mode:
authorplegall <plg@piwigo.org>2013-12-16 15:09:49 +0000
committerplegall <plg@piwigo.org>2013-12-16 15:09:49 +0000
commit5c9b9c43f549357b5c09c402f7e49a6006bb62bc (patch)
tree5c7a0c5014209aa00a985a173aec41f09beb8e72 /include/ws_functions/pwg.groups.php
parentb3bf2efb0337825838ed1cbc67f69fca43bccc26 (diff)
bug 3012 fixed: invalidate_user_cache() on pwg.users.setInfo, pwg.groups.addUser, pwg.groups.deleteUser
git-svn-id: http://piwigo.org/svn/trunk@25968 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include/ws_functions/pwg.groups.php')
-rw-r--r--include/ws_functions/pwg.groups.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/ws_functions/pwg.groups.php b/include/ws_functions/pwg.groups.php
index 3401bcaf2..3ae200bec 100644
--- a/include/ws_functions/pwg.groups.php
+++ b/include/ws_functions/pwg.groups.php
@@ -246,6 +246,8 @@ SELECT COUNT(*)
array('ignore'=>true)
);
+ invalidate_user_cache();
+
return $service->invoke('pwg.groups.getList', array('group_id' => $params['group_id']));
}
@@ -278,6 +280,8 @@ DELETE FROM '. USER_GROUP_TABLE .'
;';
pwg_query($query);
+ invalidate_user_cache();
+
return $service->invoke('pwg.groups.getList', array('group_id' => $params['group_id']));
}