From f598b0538af4f60282766de07b7b642cf2339c6d Mon Sep 17 00:00:00 2001 From: tbrehm <t.brehm@ispconfig.org> Date: Fri, 17 Aug 2012 03:22:19 -0400 Subject: [PATCH] Fixed: FS#2378 - $conf['theme'] value in interface/lib/config.inc.php is overwritten (reset to 'default') on update --- install/install.php | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/install/install.php b/install/install.php index c9f3794..d2a4416 100644 --- a/install/install.php +++ b/install/install.php @@ -109,6 +109,9 @@ $conf['timezone'] = $tmp_out[0]; unset($tmp_out); +//* Set defaukt theme +$conf['theme'] = 'default'; + //** Select installation mode $install_mode = $inst->simple_query('Installation mode', array('standard','expert'), 'standard'); -- Gitblit v1.9.1