diff options
author | plegall <plg@piwigo.org> | 2013-06-24 13:34:03 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2013-06-24 13:34:03 +0000 |
commit | f599ea711c53e801fa551fabfb635f2490fedd8e (patch) | |
tree | 0e3a1a2b6ce27f02e37b6dd207ee4a76c2c3fc66 /i.php | |
parent | e41f9bddc91c0e9afebe06620d8ba2e3ed52620c (diff) |
merge r23498 from branch 2.5 to trunk
feature 2929: strip metadata on configurable threshold
git-svn-id: http://piwigo.org/svn/trunk@23499 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | i.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -609,7 +609,7 @@ if (!$changes) ierror( $page['src_url'], 301); } -if ($d_size[0]*$d_size[1] < 256000) +if ($d_size[0]*$d_size[1] < $conf['derivatives_strip_metadata_threshold']) {// strip metadata for small images $image->strip(); } |