]> git.koha-community.org Git - koha.git/commit
Bug 7952 - PDF::Reuse under plack writes to console STDOUT instead to browser
authorDobrica Pavlinusic <dpavlin@rot13.org>
Thu, 12 Apr 2012 22:20:00 +0000 (00:20 +0200)
committerChris Cormack <chrisc@catalyst.net.nz>
Fri, 15 Jun 2012 18:58:05 +0000 (06:58 +1200)
commite2e80737d354323be820e4176c2a965440ff089b
tree022e2c4f1d3b6b31f3ff26d0f13772910882cb85
parent2b24e36191919f1f4be1c9e095a0795fdef43341
Bug 7952 - PDF::Reuse under plack writes to console STDOUT instead to browser

Without name option to prFile, PDF::Reuse opens '-' file which is real
console STDOUT on plack so pdf file gets emited to terminal instead of
sending it to browser.

This change creates temporary file using File::Temp, pass it to PDF::Reuse
and then reads it back and prints it out for plack (or CGI) to pick up.

Test secenario:

1. Home › Tools › Patron Card Creator › Manage Card Batches
2. select batch checkbox and click Export
3. select template and click Export
4. click on pdf file to download it

Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz>
Signed-off-by: Paul Poulain <paul.poulain@biblibre.com>
Signed-off-by: Chris Cormack <chrisc@catalyst.net.nz>
C4/Creators/PDF.pm