From eef42f43c02b386ed7a0b1ce9911964bb94d3e96 Mon Sep 17 00:00:00 2001 From: ivan Date: Wed, 21 Jan 2004 23:45:03 +0000 Subject: [PATCH] fix newline problem in dump --- httemplate/misc/dump.cgi | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; %> -- 2.11.0