diff options
author | Cash Costello <cash.costello@gmail.com> | 2009-10-03 18:28:36 +0000 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2009-10-03 18:28:36 +0000 |
commit | 29da1ff8d4e70f81c401730117a832a1238399dc (patch) | |
tree | 4f507178fd473cf86f4c5a5ee1576bf99d9b685f /actions/upload.php | |
parent | 82ed7baf78c3005309487fc4e8b075cba9249e8b (diff) | |
download | elgg-29da1ff8d4e70f81c401730117a832a1238399dc.tar.gz elgg-29da1ff8d4e70f81c401730117a832a1238399dc.tar.bz2 |
cleaned up the names of ImageMagick functions
Diffstat (limited to 'actions/upload.php')
-rw-r--r-- | actions/upload.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/upload.php b/actions/upload.php index 209d8e17d..228253ddd 100644 --- a/actions/upload.php +++ b/actions/upload.php @@ -164,11 +164,11 @@ // resize photos to create thumbnails
if ($image_lib == 'ImageMagick') { // ImageMagick command line
- if (tp_create_imagick_cmdline_thumbnails($file, $prefix, $filestorename) != true) {
+ if (tp_create_im_cmdline_thumbnails($file, $prefix, $filestorename) != true) {
trigger_error('Tidypics warning: failed to create thumbnails - ImageMagick command line', E_USER_WARNING);
}
- } else if ($image_lib == 'ImageMagickPHP') { // ImageMagick PHP
+ } else if ($image_lib == 'ImageMagickPHP') { // imagick php extension
if (tp_create_imagick_thumbnails($file, $prefix, $filestorename) != true) {
trigger_error('Tidypics warning: failed to create thumbnails - ImageMagick PHP', E_USER_WARNING);
|