fixed a minor bug in invert_time stuff in conf.pl. It gave a parse error
authorlkehresman <lkehresman@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Tue, 10 Oct 2000 15:17:49 +0000 (15:17 +0000)
committerlkehresman <lkehresman@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Tue, 10 Oct 2000 15:17:49 +0000 (15:17 +0000)
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

index cd4fc0a38dc50f34bc4b03b377d7a2682956e595..833bdfd2e6dd0223d4bdc4aafeb05e26a82cc5a0 100755 (executable)
@@ -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) {