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/create_thumbnails.php | |
parent | 82ed7baf78c3005309487fc4e8b075cba9249e8b (diff) | |
download | elgg-29da1ff8d4e70f81c401730117a832a1238399dc.tar.gz elgg-29da1ff8d4e70f81c401730117a832a1238399dc.tar.bz2 |
cleaned up the names of ImageMagick functions
Diffstat (limited to 'actions/create_thumbnails.php')
-rw-r--r-- | actions/create_thumbnails.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/create_thumbnails.php b/actions/create_thumbnails.php index 3fefb4f0d..3869e2dcf 100644 --- a/actions/create_thumbnails.php +++ b/actions/create_thumbnails.php @@ -35,12 +35,12 @@ if ($image_lib == 'ImageMagick') { // ImageMagick command line
- if (tp_create_imagick_cmdline_thumbnails($image, $prefix, $filestorename) != true) {
+ if (tp_create_im_cmdline_thumbnails($image, $prefix, $filestorename) != true) {
trigger_error('Tidypics warning: failed to create thumbnails - ImageMagick command line', E_USER_WARNING);
echo "Failed to create thumbnails";
}
- } else if ($image_lib == 'ImageMagickPHP') { // ImageMagick PHP
+ } else if ($image_lib == 'ImageMagickPHP') { // imagick PHP extension
if (tp_create_imagick_thumbnails($image, $prefix, $filestorename) != true) {
trigger_error('Tidypics warning: failed to create thumbnails - ImageMagick PHP', E_USER_WARNING);
|