diff options
Diffstat (limited to 'httemplate/misc/dump.cgi')
-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; %> |