mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-03-28 17:42:57 +01:00
correct bug in commit r3622 ( feature 1053 )
git-svn-id: http://piwigo.org/svn/trunk@3640 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -332,12 +332,12 @@ SELECT COUNT(DISTINCT(image_id)) as total
|
||||
if ( !is_admin($userdata['status']) )
|
||||
{ // for non admins we forbid categories with no image (feature 1053)
|
||||
$forbidden_ids = array();
|
||||
foreach ($user_cache_cats as $cat_id => $cat)
|
||||
foreach ($user_cache_cats as $cat)
|
||||
{
|
||||
if ($cat['count_images']==0)
|
||||
{
|
||||
array_push($forbidden_ids, $cat_id);
|
||||
unset( $user_cache_cats[$cat_id] );
|
||||
array_push($forbidden_ids, $cat['cat_id']);
|
||||
unset( $user_cache_cats[$cat['cat_id']] );
|
||||
}
|
||||
}
|
||||
if ( !empty($forbidden_ids) )
|
||||
|
||||
Reference in New Issue
Block a user