Re: file targets
Kirk Haines <[email protected]>
| Newsgroups | gmane.comp.apache.mod-ruby |
|---|---|
| Message-ID | <[email protected]> |
On Wed, 4 Feb 2004, Daniel Bretoi wrote:
> r.headers_out.add("Content-Disposition:attachment","filename=blah");
r.headers_out.add("Content-Disposition","attachment; filename=blah")
i.e. move the "attachment" bit to the value of the header, and not the
key.
Kirk Haines