X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/kivitendo-erp.git/blobdiff_plain/db53dc8ab328b82c7af17896487674ad98f2af6b..c9902d7658d0cacdf665971b32de0e054637efd0:/SL/Inifile.pm diff --git a/SL/Inifile.pm b/SL/Inifile.pm index f7fe27b3c..6895d6030 100644 --- a/SL/Inifile.pm +++ b/SL/Inifile.pm @@ -37,10 +37,12 @@ package Inifile; use IO::File; +use strict; + sub new { - $main::lxdebug->enter_sub(); + $main::lxdebug->enter_sub(2); - my ($type, $file) = @_; + my ($type, $file, %options) = @_; my $id = ""; my $skip; @@ -52,16 +54,18 @@ sub new { open FH, "$file" or Form->error("$file : $!"); while () { - next if m/^(#|;|\s)/; - chomp; - # strip comments - s/(#|;).*//g; + if (!$options{verbatim}) { + # strip comments + s/\#.*//; - # remove any trailing whitespace - s/^\s*//; - s/\s*$//; + # remove any trailing whitespace + s/^\s*//; + s/\s*$//; + } else { + next if (m/^\s*\#/); + } next unless $_; @@ -86,7 +90,7 @@ sub new { } close FH; - $main::lxdebug->leave_sub(); + $main::lxdebug->leave_sub(2); return bless $self, $type; }