fix admin.php #_user_cache.need_update
git-svn-id: http://piwigo.org/svn/trunk@1952 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
parent
a991ac35eb
commit
3ed9a9e763
1 changed files with 18 additions and 2 deletions
20
admin.php
20
admin.php
|
@ -160,8 +160,24 @@ include(PHPWG_ROOT_PATH.'include/page_tail.php');
|
|||
// | order permission refreshment |
|
||||
// +-----------------------------------------------------------------------+
|
||||
// Only for pages witch change permissions
|
||||
if (in_array($page['page'], array('cat_options', 'cat_perm',
|
||||
'group_perm', 'site_update', 'user_list', 'user_perm')))
|
||||
if (
|
||||
in_array($page['page'],
|
||||
array(
|
||||
'site_manager', // delete site
|
||||
'site_update', // ?only POST
|
||||
'cat_list', // delete cat
|
||||
'cat_modify', // delete cat; public/private; lock/unlock
|
||||
'cat_move', // ?only POST
|
||||
'cat_options', // ?only POST; public/private; lock/unlock
|
||||
'cat_perm', // ?only POST
|
||||
'element_set', // ?only POST; associate/dissociate
|
||||
'user_list', // ?only POST; group assoc
|
||||
'user_perm',
|
||||
'group_perm',
|
||||
'group_list', // delete group
|
||||
)
|
||||
)
|
||||
)
|
||||
{
|
||||
$query = '
|
||||
UPDATE '.USER_CACHE_TABLE.'
|
||||
|
|
Loading…
Reference in a new issue