]> 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)
committerJared Camins-Esakov <jcamins@cpbibliography.com>
Fri, 13 Jul 2012 02:17:13 +0000 (22:17 -0400)
commitcbadc3ff963757be6db7dc277e681163eaabd51f
tree902b51f19ba9b58bff21403516165fd642cf03c2
parente80a0c31531336dd87a7613bf710340d8a9f9b06
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>
(cherry picked from commit e2e80737d354323be820e4176c2a965440ff089b)
C4/Creators/PDF.pm