summaryrefslogtreecommitdiff
path: root/modules/color
diff options
context:
space:
mode:
authorwebchick <webchick@24967.no-reply.drupal.org>2011-06-22 17:53:54 -0700
committerwebchick <webchick@24967.no-reply.drupal.org>2011-06-22 17:53:54 -0700
commit18a5b95a332abb8e819ffbed3901437d6722c6ed (patch)
tree0f296bfc7dc184f58cec2aef9e29f365aee11e21 /modules/color
parentb8cb76c48b9b119ce4c7ae237cea14aac36099bc (diff)
downloadbrdo-18a5b95a332abb8e819ffbed3901437d6722c6ed.tar.gz
brdo-18a5b95a332abb8e819ffbed3901437d6722c6ed.tar.bz2
Issue #758628 follow-up by jbrown, mgifford, nowarninglabel: Make GD library hook_requirements() desaturation and rotate errors into warnings..
Diffstat (limited to 'modules/color')
-rw-r--r--modules/color/color.install2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/color/color.install b/modules/color/color.install
index b0eb95ef6..2a6b9cdd1 100644
--- a/modules/color/color.install
+++ b/modules/color/color.install
@@ -24,7 +24,7 @@ function color_requirements($phase) {
$requirements['color_gd']['severity'] = REQUIREMENT_OK;
}
else {
- $requirements['color_gd']['severity'] = REQUIREMENT_ERROR;
+ $requirements['color_gd']['severity'] = REQUIREMENT_WARNING;
$requirements['color_gd']['description'] = t('The GD library for PHP is enabled, but was compiled without PNG support. Check the <a href="@url">PHP image documentation</a> for information on how to correct this.', array('@url' => 'http://www.php.net/manual/ref.image.php'));
}
}