diff --git a/modules/color/color.install b/modules/color/color.install index f028afab7a37..5526ec7521cc 100644 --- a/modules/color/color.install +++ b/modules/color/color.install @@ -18,17 +18,17 @@ function color_requirements($phase) { } else { $requirements['gd']['severity'] = REQUIREMENT_ERROR; - $requirements['gd']['description'] = t('The GD library for PHP is enabled, but was compiled without PNG support. Please check the PHP image documentation for information on how to correct this.', array('@url' => 'http://be.php.net/manual/en/ref.image.php')); + $requirements['gd']['description'] = t('The GD library for PHP is enabled, but was compiled without PNG support. Please check the PHP image documentation for information on how to correct this.', array('@url' => 'http://www.php.net/manual/en/ref.image.php')); } } else { $requirements['gd'] = array( 'value' => t('Not installed'), 'severity' => REQUIREMENT_ERROR, - 'description' => t('The GD library for PHP is missing or outdated. Please check the PHP image documentation for information on how to correct this.', array('@url' => 'http://be.php.net/manual/en/ref.image.php')), + 'description' => t('The GD library for PHP is missing or outdated. Please check the PHP image documentation for information on how to correct this.', array('@url' => 'http://www.php.net/manual/en/ref.image.php')), ); } - $requirements['gd']['title'] = t('GD Library'); + $requirements['gd']['title'] = t('GD library'); } return $requirements;