From ed50b357adff8e056a38d4a6aa76c3780ad1c5a2 Mon Sep 17 00:00:00 2001 From: Yuri Kuznetsov Date: Wed, 2 Aug 2023 10:46:37 +0300 Subject: [PATCH] fix --- install/entry.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/entry.php b/install/entry.php index 716fb04808..a5f4588582 100644 --- a/install/entry.php +++ b/install/entry.php @@ -204,7 +204,7 @@ if (Utils::checkActionExists($action)) { include $actionFile; } -$theme = $_SESSION['install']['theme'] ?? $config->get('theme'); +$theme = $_SESSION['install']['theme'] ?? $installer->getConfig()->get('theme'); $smarty->assign('logoSrc', $installer->getLogoSrc($theme));