summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;
}