diff --git a/install/core/Installer.php b/install/core/Installer.php index 5a8f726e6c..160b5e08a5 100644 --- a/install/core/Installer.php +++ b/install/core/Installer.php @@ -50,19 +50,12 @@ use Espo\Core\ORM\EntityManager; class Installer { private $app = null; - private $language = null; - private $systemHelper = null; - private $databaseHelper = null; - private $installerConfig; - private $isAuth = false; - private $passwordHash; - private $defaultSettings; private $permittedSettingList = [ diff --git a/install/entry.php b/install/entry.php index 619cfb685d..1765368b97 100644 --- a/install/entry.php +++ b/install/entry.php @@ -193,7 +193,7 @@ $smarty->assign('action', ucfirst($action)); $smarty->assign('config', $config); $smarty->assign('installerConfig', $installer->getInstallerConfigData()); -$theme = $_SESSION['install']['theme'] ?? 'Espo'; +$theme = $_SESSION['install']['theme'] ?? 'Violet'; $stylesheet = $installer->getMetadata()->get(['themes', $theme, 'stylesheet']); $smarty->assign('stylesheet', $stylesheet);