From 5a4f403e388c68d14a3b246bdf8346df2333e662 Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Tue, 30 Jan 2024 11:35:19 +0100 Subject: [PATCH] set default theme after install to darkly to match installer --- .../migrations/059_add_default_theme_to_options_table.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/application/migrations/059_add_default_theme_to_options_table.php b/application/migrations/059_add_default_theme_to_options_table.php index d79f7b9fb..6373f0202 100644 --- a/application/migrations/059_add_default_theme_to_options_table.php +++ b/application/migrations/059_add_default_theme_to_options_table.php @@ -3,7 +3,7 @@ defined('BASEPATH') OR exit('No direct script access allowed'); /* -* This migration adds the theme 'default' as standard/default theme to wavelog. +* This migration adds the theme 'darkly' as standard/default theme to wavelog. */ class Migration_add_default_theme_to_options_table extends CI_Migration { @@ -11,7 +11,7 @@ class Migration_add_default_theme_to_options_table extends CI_Migration { public function up() { $data = array( - array('option_name' => "theme", 'option_value' => "default", 'autoload' => "yes") + array('option_name' => "theme", 'option_value' => "darkly", 'autoload' => "yes") ); $this->db->insert_batch('options', $data);