diff options
author | plegall <plg@piwigo.org> | 2013-06-05 10:01:05 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2013-06-05 10:01:05 +0000 |
commit | 58d51183c61623eb91dec6a3ce2a39892124f5d5 (patch) | |
tree | d10cf8f52c9d952b4c6b7e7fe8ecedbc8a5af59e /include | |
parent | 7f724e789e2bcb0c858ebd0e5f5fc292f8264ae6 (diff) |
bug 2917 fixed: invalidate user cache each time pwg.images.delete is called,
to avoid blocking errors on gallery side if deleted photo is set as album
thumbnail.
git-svn-id: http://piwigo.org/svn/branches/2.5@23059 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include')
-rw-r--r-- | include/ws_functions.inc.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/ws_functions.inc.php b/include/ws_functions.inc.php index 73f8e9942..faba3cf2a 100644 --- a/include/ws_functions.inc.php +++ b/include/ws_functions.inc.php @@ -2697,6 +2697,7 @@ function ws_images_delete($params, &$service) include_once(PHPWG_ROOT_PATH.'admin/include/functions.php'); delete_elements($image_ids, true); + invalidate_user_cache(); } function ws_add_image_category_relations($image_id, $categories_string, $replace_mode=false) |