Ver Fonte

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;

Luke Ehresman há 25 anos atrás
pai
commit
cf8bc5ef5e
1 ficheiros alterados com 4 adições e 1 exclusões
  1. 4 1
      config/conf.pl

+ 4 - 1
config/conf.pl

@@ -4,7 +4,7 @@
 #
 #
 # A simple configure script to configure squirrelmail
 # A simple configure script to configure squirrelmail
 ############################################################              
 ############################################################              
-$conf_pl_version = "x53";
+$conf_pl_version = "x61";
 
 
 ############################################################              
 ############################################################              
 # First, lets read in the data already in there...
 # First, lets read in the data already in there...
@@ -221,6 +221,9 @@ if (!$default_unseen_type) {
 if (!$config_use_color) {
 if (!$config_use_color) {
    $config_use_color = 1;
    $config_use_color = 1;
 }
 }
+if (!$invert_time) {
+   $invert_time = "false";
+}
 
 
 #####################################################################################
 #####################################################################################
 if ($config_use_color == 1) {
 if ($config_use_color == 1) {