Update #_user_cache.need_update only for pages witch change permission

git-svn-id: http://piwigo.org/svn/trunk@1945 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
rub
2007-04-07 21:49:38 +00:00
parent f814e885f3
commit a5f440fb5c
+8 -3
View File
@@ -159,10 +159,15 @@ include(PHPWG_ROOT_PATH.'include/page_tail.php');
// +-----------------------------------------------------------------------+
// | order permission refreshment |
// +-----------------------------------------------------------------------+
$query = '
// Only for pages witch change permissions
if (in_array($page['page'], array('cat_options', 'cat_perm',
'group_perm', 'site_update', 'user_list', 'user_perm')))
{
$query = '
UPDATE '.USER_CACHE_TABLE.'
SET need_update = \'true\'
;';
pwg_query($query);
pwg_query($query);
}
?>