summaryrefslogtreecommitdiff
path: root/httemplate/misc/download-batch.cgi
diff options
context:
space:
mode:
authorivan <ivan>2003-09-30 12:48:11 +0000
committerivan <ivan>2003-09-30 12:48:11 +0000
commitd993eaef639b1abd95973b26e7c336fc5e588041 (patch)
tree16a804679e24c1505517012f8c2115558aa95f53 /httemplate/misc/download-batch.cgi
parent56c771abafb2cad3430fee10deacba6e561933de (diff)
IE doesn't like downloading MIME type text/comma-separated-values
Diffstat (limited to 'httemplate/misc/download-batch.cgi')
-rw-r--r--httemplate/misc/download-batch.cgi3
1 files changed, 2 insertions, 1 deletions
diff --git a/httemplate/misc/download-batch.cgi b/httemplate/misc/download-batch.cgi
index ecb80d256..306ef5d63 100644
--- a/httemplate/misc/download-batch.cgi
+++ b/httemplate/misc/download-batch.cgi
@@ -1,6 +1,7 @@
<%
-http_header('Content-Type' => 'text/comma-separated-values' );
+#http_header('Content-Type' => 'text/comma-separated-values' ); #IE chokes
+http_header('Content-Type' => 'text/plain' );
for my $cust_pay_batch ( sort { $a->paybatchnum <=> $b->paybatchnum }
qsearch('cust_pay_batch', {} )