mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:20 +01:00
Preferences - Fix sections missing under some circumstances
This commit is contained in:
parent
03aa34460a
commit
00c11c1a0c
@ -381,7 +381,7 @@ class preferences_settings
|
||||
foreach($this->settings as $setting)
|
||||
{
|
||||
if (!is_array($setting)) continue;
|
||||
if ($type != 'forced' && (string)$GLOBALS['egw']->preferences->forced[$appname][$setting['name']] !== '')
|
||||
if ($type != 'forced' && $setting['name'] && (string)$GLOBALS['egw']->preferences->forced[$appname][$setting['name']] !== '')
|
||||
{
|
||||
continue; // forced preferences are not displayed, unless we edit them
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user