From a1f1f9bcaae5c8eb665816b9f5c96ef9d22e9cf5 Mon Sep 17 00:00:00 2001 From: lkehresman Date: Tue, 10 Oct 2000 15:17:49 +0000 Subject: [PATCH] fixed a minor bug in invert_time stuff in conf.pl. It gave a parse error if nothing had been set: $inverse_time = ; -- changed to: $inverse_time = false; git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@785 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- config/conf.pl | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/config/conf.pl b/config/conf.pl index cd4fc0a3..833bdfd2 100755 --- a/config/conf.pl +++ b/config/conf.pl @@ -4,7 +4,7 @@ # # A simple configure script to configure squirrelmail ############################################################ -$conf_pl_version = "x53"; +$conf_pl_version = "x61"; ############################################################ # First, lets read in the data already in there... @@ -221,6 +221,9 @@ if (!$default_unseen_type) { if (!$config_use_color) { $config_use_color = 1; } +if (!$invert_time) { + $invert_time = "false"; +} ##################################################################################### if ($config_use_color == 1) { -- 2.25.1