diff options
author | plegall <plg@piwigo.org> | 2012-01-12 21:37:28 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2012-01-12 21:37:28 +0000 |
commit | cac417c74bc6d5f528b356190561d244e9b4f93a (patch) | |
tree | 98d7f341215bfec3e75de2dde0a2a2167d54b30c /admin/include/photos_add_direct_process.inc.php | |
parent | 6a115001ba122c2084e28353e025f7c8c5f62335 (diff) |
feature 2548, multiple size:
* adapt the upload script
* remove the resize settings screen
* add a new screen [Administration > Configuration > Options > Photo Sizes]
with the ability to resize original after upload
git-svn-id: http://piwigo.org/svn/trunk@12879 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | admin/include/photos_add_direct_process.inc.php | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/admin/include/photos_add_direct_process.inc.php b/admin/include/photos_add_direct_process.inc.php index c0cb3e4c0..03900747e 100644 --- a/admin/include/photos_add_direct_process.inc.php +++ b/admin/include/photos_add_direct_process.inc.php @@ -202,12 +202,7 @@ SELECT $thumbnail['file'] = $image_infos['file']; - $thumbnail['src'] = get_thumbnail_location( - array( - 'path' => $image_infos['path'], - 'tn_ext' => $image_infos['tn_ext'], - ) - ); + $thumbnail['src'] = DerivativeImage::thumb_url($image_infos); // TODO: when implementing this plugin in Piwigo core, we should have // a function get_image_name($name, $file) (if name is null, then |