summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2009-07-21 00:07:41 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2009-07-21 00:07:41 +0000
commit60ea0a7cfb39d89011d3322973ec0b9e28d3772f (patch)
treea7b98c610d54a7c22cdbaa3ee02f5bf5bda24544
parent4be64425b9770e8e56abfc5456f0aafcfbbd3124 (diff)
downloadbrdo-60ea0a7cfb39d89011d3322973ec0b9e28d3772f.tar.gz
brdo-60ea0a7cfb39d89011d3322973ec0b9e28d3772f.tar.bz2
#524734 by eojthebrave: Fix typo in image.gd.inc.
-rw-r--r--modules/system/image.gd.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/image.gd.inc b/modules/system/image.gd.inc
index 884a93152..ad76defff 100644
--- a/modules/system/image.gd.inc
+++ b/modules/system/image.gd.inc
@@ -216,7 +216,7 @@ function image_gd_crop(stdClass $image, $x, $y, $width, $height) {
function image_gd_desaturate(stdClass $image) {
// PHP installations using non-bundled GD do not have imagefilter.
if (!drupal_function_exists('imagefilter')) {
- watchdog('image', 'The image %file could not be rotated because the imagefilter() function is not available in this PHP installation.', array('%file' => $image->source));
+ watchdog('image', 'The image %file could not be desaturated because the imagefilter() function is not available in this PHP installation.', array('%file' => $image->source));
return FALSE;
}