From Dan Scott: EOL Whitespace is now stripped in the perl config file,
authormiker <miker@9efc2488-bf62-4759-914b-345cdb29e865>
Wed, 23 May 2007 15:04:59 +0000 (15:04 +0000)
committermiker <miker@9efc2488-bf62-4759-914b-345cdb29e865>
Wed, 23 May 2007 15:04:59 +0000 (15:04 +0000)
hopefully saving some debugging time in the future.

Details at: http://list.georgialibraries.org/pipermail/open-ils-dev/2007-May/001049.html

git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@914 9efc2488-bf62-4759-914b-345cdb29e865

src/perlmods/OpenSRF/Utils/Config.pm

index 359c255..8e9c398 100755 (executable)
@@ -40,7 +40,7 @@ sub new {
                }
 
                my ($protokey,$value,$keytype,$key);
-               if ($line =~ /^([^=\s]+)\s*=\s*(.*)/s) {
+               if ($line =~ /^([^=\s]+)\s*=\s*(.*)\s*$/s) {
                        ($protokey,$value) = ($1,$2);
                        ($keytype,$key) = split(/:/,$protokey);
                }
@@ -421,11 +421,11 @@ sub load_config {
 
 =head1 BUGS
 
-No know bugs, but report any to miker@purplefrog.com.
+No know bugs, but report any to mrylander@gmail.com.
 
 =head1 COPYRIGHT AND LICENSING
 
-Mike Rylander, Copyright 2000-2004
+Mike Rylander, Copyright 2000-2007
 
 The OpenSRF::Utils::Config module is free software. You may distribute under the terms
 of the GNU General Public License version 2 or greater.