From a73af766bf022b31e4d765395e48e73be315b1a7 Mon Sep 17 00:00:00 2001 From: kink Date: Wed, 14 Aug 2002 11:20:14 +0000 Subject: [PATCH] Assign a default value to theme_default if not set. git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@3297 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- config/conf.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/config/conf.pl b/config/conf.pl index a25019b2..7bccee19 100755 --- a/config/conf.pl +++ b/config/conf.pl @@ -2417,6 +2417,7 @@ sub save_data { # strings print CF "\$theme_css = '$theme_css';\n"; + if ( $theme_default eq '' ) { $theme_default = '0'; } print CF "\$theme_default = $theme_default;\n"; for ( $count = 0 ; $count <= $#theme_name ; $count++ ) { -- 2.25.1