diff options
author | christopherm <christopherm@4979c152-3d1c-0410-bac9-87ea11338e46> | 2006-09-18 14:37:43 +0000 |
---|---|---|
committer | christopherm <christopherm@4979c152-3d1c-0410-bac9-87ea11338e46> | 2006-09-18 14:37:43 +0000 |
commit | 8198116bfe8e687d492944d24934e28b7aaa08f5 (patch) | |
tree | f003c2050cccdb978434077ff37a0dbbad1e3081 | |
parent | cc201091119a448036c0710d121602fd72b83628 (diff) |
Fixing more tabs in HTTP headers caused by whitespace cleanup
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@111 4979c152-3d1c-0410-bac9-87ea11338e46
-rwxr-xr-x | LedgerSMB/Form.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/LedgerSMB/Form.pm b/LedgerSMB/Form.pm index cc60e287..9396f69d 100755 --- a/LedgerSMB/Form.pm +++ b/LedgerSMB/Form.pm @@ -889,8 +889,8 @@ sub parse_template { } else { # launch application - print qq|Content-Type: application/$self->{format} - Content-Disposition: attachment; filename="$self->{tmpfile}"\n\n|; + print qq|Content-Type: application/$self->{format}\n|. + qq|Content-Disposition: attachment; filename="$self->{tmpfile}"\n\n|; unless (open(OUT, ">-")) { $err = $!; |