fix newline problem in dump
[freeside.git] / httemplate / misc / dump.cgi
index 2c7dfc4..dc1323b 100644 (file)
@@ -13,7 +13,7 @@
   http_header('Content-Type' => 'text/plain' );
 
   while (<DUMP>) {
   http_header('Content-Type' => 'text/plain' );
 
   while (<DUMP>) {
-    chomp;
-%><%= $_ %><% }
-   close DUMP;
+    print $_;
+  }
+  close DUMP;
 %>
 %>