From: ivan Date: Wed, 21 Jan 2004 23:45:03 +0000 (+0000) Subject: fix newline problem in dump X-Git-Tag: NET_WHOIS_RAW_0_31~177 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=eef42f43c02b386ed7a0b1ce9911964bb94d3e96 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; %>