[fix] Use TIFF files when submitting print jobs.

This commit is contained in:
Solomon Peachy 2024-11-07 21:33:47 -05:00
parent ee7b32f11a
commit 93afd5442b
2 changed files with 2 additions and 1 deletions

View file

@ -53,6 +53,7 @@ v2.38 (Unreleased)
[fix] PHP 8.1-related warnings
[fix] Updated bug URLs.
[fix] Deal with malformed feed requests
[fix] Use TIFF files when submitting print jobs
v2.37.1 (December 3, 2012)

View file

@ -127,7 +127,7 @@ function photo_print_single($database, $single) {
# generate sane filename
$tmp_filename = tempnam($tmp_volume_path, "po.print.");
unlink($tmp_filename);
$tmp_filename .= ".ppm";
$tmp_filename .= ".tiff";
# set up processing
if ($use_gm) {