Skip to content

Commit

Permalink
Item12180: Better continued comments
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.foswiki.org/trunk@16159 0b4bb1d4-4e5a-0410-9cc4-b2b747904278
  • Loading branch information
TimotheLitt authored and TimotheLitt committed Dec 6, 2012
1 parent 11155ed commit 9a248a5
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions core/lib/Foswiki/Configure/Pluggables/AUDIT.pm
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,10 @@ sub parseFile {
$cont =~ s/\r+\n//g;
$cont =~ s/^#// if ( $line =~ /^#/ );
$cont =~ s/^\s*//;
chop $line;
$line .= $cont unless ( $cont =~ /^#/ );
unless ( $cont =~ /^#/ ) {
chop $line;
$line .= $cont;
}
}
if ( $line =~ /\\$/ ) {
push @Foswiki::Configure::FoswikiCfg::errors,
Expand Down

0 comments on commit 9a248a5

Please sign in to comment.