From 02b207b8c3f8fb94b07ce439d02583995bf0a646 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sat, 5 Jun 2021 11:01:03 +0200 Subject: [PATCH] bug fixes --- Admin/Installer.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Admin/Installer.php b/Admin/Installer.php index 99d0654..529d339 100755 --- a/Admin/Installer.php +++ b/Admin/Installer.php @@ -19,7 +19,7 @@ use phpOMS\DataStorage\Database\DatabasePool; use phpOMS\Config\SettingsInterface; use phpOMS\Module\ModuleInfo; use Model\Setting; -use Model\SettingMApper; +use Model\SettingMapper; /** * Installer class. @@ -52,6 +52,6 @@ final class Installer extends InstallerAbstract private static function installDefaultColors(ModuleInfo $info, SettingsInterface $cfgHandler) : void { $setting = new Setting(); - SettingMapper::create($setting->with(0, '1007500001', '#ff000000;#ff00ff00;#ffffffff', 'Tasks')); + SettingMapper::create($setting->with(0, '1007500001', '#ff000000;#ff00ff00;#ffffffff', 'Tag')); } }