diff options
author | ivan <ivan> | 2004-01-21 23:45:03 +0000 |
---|---|---|
committer | ivan <ivan> | 2004-01-21 23:45:03 +0000 |
commit | eef42f43c02b386ed7a0b1ce9911964bb94d3e96 (patch) | |
tree | 732b6da85350a335a212bac3ac15942df3119e20 /httemplate/misc | |
parent | 833547365c4418946c1c270f43928164d51cf531 (diff) |
fix newline problem in dump
Diffstat (limited to 'httemplate/misc')
-rw-r--r-- | httemplate/misc/dump.cgi | 6 |
1 files 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 (<DUMP>) { - chomp; -%><%= $_ %><% } - close DUMP; + print $_; + } + close DUMP; %> |