diff options
author | ivan <ivan> | 2004-01-21 23:45:05 +0000 |
---|---|---|
committer | ivan <ivan> | 2004-01-21 23:45:05 +0000 |
commit | 5b21fb3108f051bccf10640fe45d647ad6c5f3cb (patch) | |
tree | 27dc7336c3c37e1b10002e2e541ed9289f5a2f22 | |
parent | 617592ba17ec61103e1bd6477cdd5f27cba66a1c (diff) |
fix newline problem in dump
-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; %> |