mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 08:34:42 +01:00
fix PHP 8.x Fatal changing languages
This commit is contained in:
parent
5320e05182
commit
9188b04256
@ -44,7 +44,7 @@ class admin_messages
|
||||
}
|
||||
else
|
||||
{
|
||||
$button = @key($content['button']);
|
||||
$button = key($content['button'] ?? []);
|
||||
|
||||
if ($button)
|
||||
{
|
||||
@ -59,7 +59,7 @@ class admin_messages
|
||||
}
|
||||
Framework::message(lang('message has been updated'));
|
||||
if ($button == 'apply') break;
|
||||
//fall through
|
||||
//fall through
|
||||
default:
|
||||
Egw::redirect_link('/index.php', array(
|
||||
'menuaction' => 'admin.admin_ui.index',
|
||||
@ -106,4 +106,4 @@ class admin_messages
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user