From: ivan Date: Wed, 21 Jan 2004 23:45:05 +0000 (+0000) Subject: fix newline problem in dump X-Git-Tag: freeside_1_4_2beta1~298 X-Git-Url: http://git.freeside.biz/gitweb/?a=commitdiff_plain;h=5b21fb3108f051bccf10640fe45d647ad6c5f3cb;p=freeside.git fix newline problem in dump --- diff --git a/httemplate/misc/dump.cgi b/httemplate/misc/dump.cgi index 2c7dfc455..dc1323bb3 100644 --- a/httemplate/misc/dump.cgi +++ b/httemplate/misc/dump.cgi @@ -13,7 +13,7 @@ http_header('Content-Type' => 'text/plain' ); while () { - chomp; -%><%= $_ %><% } - close DUMP; + print $_; + } + close DUMP; %>