From dd732d3044b71a903a67459b57bb92b132ffa69b Mon Sep 17 00:00:00 2001 From: Yuri Kuznetsov Date: Sun, 24 Jul 2022 13:23:57 +0300 Subject: [PATCH] install themes --- install/core/Installer.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/install/core/Installer.php b/install/core/Installer.php index e1ca3c5bfa..da68050259 100644 --- a/install/core/Installer.php +++ b/install/core/Installer.php @@ -267,9 +267,10 @@ class Installer public function getThemeList(): array { return [ - 'HazyblueVertical', - 'DarkVertical', - 'SakuraVertical', + 'Espo', + 'Sakura', + 'Dark', + 'Hazyblue', ]; } @@ -367,7 +368,7 @@ class Installer 'passwordSalt' => $this->getPasswordHash()->generateSalt(), 'cryptKey' => $this->getContainer()->get('crypt')->generateKey(), 'hashSecretKey' => Util::generateSecretKey(), - 'theme' => $saveData['theme'] ?? 'HazyblueVertical', + 'theme' => $saveData['theme'] ?? 'Espo', ]; if (empty($saveData['defaultPermissions']['user'])) {