diff options
author | ivan <ivan> | 2003-09-30 12:48:12 +0000 |
---|---|---|
committer | ivan <ivan> | 2003-09-30 12:48:12 +0000 |
commit | c3f79630e79a90e4eb679a509c201aef1f0fc258 (patch) | |
tree | 3cdc0004e3418a70bab5c1f52db77a285f08896c | |
parent | 515bf7f8a0479c30b8833575fd305cb2ac3fa412 (diff) |
IE doesn't like downloading MIME type text/comma-separated-values
-rw-r--r-- | httemplate/misc/download-batch.cgi | 3 |
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', {} ) |