summaryrefslogtreecommitdiff
path: root/modules/color
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2006-12-05 05:49:50 +0000
committerDries Buytaert <dries@buytaert.net>2006-12-05 05:49:50 +0000
commitc37b3794cc6bd59a6c09ef003ec4d86626aa76f5 (patch)
treedbce868cd3a94c86dd0074522429bdec02d6665c /modules/color
parent38f30507774872ece71c20083f32a930eed3f186 (diff)
downloadbrdo-c37b3794cc6bd59a6c09ef003ec4d86626aa76f5.tar.gz
brdo-c37b3794cc6bd59a6c09ef003ec4d86626aa76f5.tar.bz2
- Patch #101228 by Chris Kennedy and webchick: tweak color.install strings/links.
Diffstat (limited to 'modules/color')
-rw-r--r--modules/color/color.install6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/color/color.install b/modules/color/color.install
index f028afab7..5526ec752 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 <a href="@url">PHP image documentation</a> 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 <a href="@url">PHP image documentation</a> 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 <a href="@url">PHP image documentation</a> 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 <a href="@url">PHP image documentation</a> 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;