handle non-existing theme in user setting

main
Michael Weimann 3 years ago
parent 2da821a68d
commit 98e9af8b8d
No known key found for this signature in database
GPG Key ID: 34F0524D4DA694A1

@ -6,6 +6,7 @@ use Engelsystem\Helpers\Authenticator;
use Engelsystem\Http\Request;
use Twig\Extension\AbstractExtension as TwigExtension;
use Twig\Extension\GlobalsInterface as GlobalsInterface;
use function array_key_exists;
class Globals extends TwigExtension implements GlobalsInterface
{
@ -46,6 +47,10 @@ class Globals extends TwigExtension implements GlobalsInterface
$themeId = (int)$query;
}
if (array_key_exists($themeId, $themes) === false) {
$themeId = 1;
}
$theme = $themes[$themeId];
return [

Loading…
Cancel
Save