aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorplegall <plg@piwigo.org>2013-12-12 10:34:55 +0000
committerplegall <plg@piwigo.org>2013-12-12 10:34:55 +0000
commit483cce26121918960163e501b4feb132572cc76d (patch)
treeffa138420b7c9d51a0a0e6038c7b59cc5ebf4988 /include
parent97371a948ae1d212a61c8200ce93380d39ee2fa1 (diff)
feature 2869 added: support TIFF files on web upload (requires ext_imagick)
git-svn-id: http://piwigo.org/svn/trunk@25929 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include')
-rw-r--r--include/config_default.inc.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/config_default.inc.php b/include/config_default.inc.php
index b0a42d4ae..ecc0630aa 100644
--- a/include/config_default.inc.php
+++ b/include/config_default.inc.php
@@ -796,4 +796,7 @@ $conf['original_url_protection'] = '';
// and if that option is not explicitly transmit when the album is created.
$conf['inheritance_by_default'] = false;
-?> \ No newline at end of file
+// 'png' or 'jpg': your uploaded TIF photos will have a representative in
+// JPEG or PNG file format
+$conf['tiff_representative_ext'] = 'png';
+?>