Small fix to tassium code, if you chomp something it can never match
authorkink <kink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Tue, 31 Dec 2002 11:32:48 +0000 (11:32 +0000)
committerkink <kink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Tue, 31 Dec 2002 11:32:48 +0000 (11:32 +0000)
"\n" after that. And add standard (c) message, and upgrade the conf.pl
version number.

git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@4330 7612ce4b-ef26-0410-bec9-ea0150e637f0

config/conf.pl

index 483549bc9692448b6ab141b5b5610a58ac5b897f..d72085f5d3de760481d60640d90bc74bfb1884a9 100755 (executable)
@@ -1,12 +1,14 @@
 #!/usr/bin/env perl
 # conf.pl
 #!/usr/bin/env perl
 # conf.pl
-# Luke Ehresman (luke@squirrelmail.org)
 #
 #
-# A simple configure script to configure squirrelmail
+# Copyright (c) 1999-2003 The SquirrelMail Project Team 
+# Licensed under the GNU GPL. For full terms see COPYING.
+#
+# A simple configure script to configure SquirrelMail
 #
 # $Id$
 ############################################################              
 #
 # $Id$
 ############################################################              
-$conf_pl_version = "1.2.0";
+$conf_pl_version = "1.4.0";
 
 ############################################################
 # Check what directory we're supposed to be running in, and
 
 ############################################################
 # Check what directory we're supposed to be running in, and
@@ -2126,7 +2128,7 @@ sub command316 {
     print "[$WHT$session_name$NRM]: $WHT";
     $new_session_name = <STDIN>;
        chomp($new_session_name);
     print "[$WHT$session_name$NRM]: $WHT";
     $new_session_name = <STDIN>;
        chomp($new_session_name);
-    if ( $new_session_name eq "\n" ) {
+    if ( $new_session_name eq "" ) {
         $new_session_name = $session_name;
     }
     return $new_session_name;
         $new_session_name = $session_name;
     }
     return $new_session_name;