Index: imageapi_gd.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/imageapi/imageapi_gd.install,v
retrieving revision 1.10
diff -u -p -r1.10 imageapi_gd.install
--- imageapi_gd.install	2 May 2009 19:44:33 -0000	1.10
+++ imageapi_gd.install	19 May 2010 19:06:14 -0000
@@ -4,7 +4,7 @@
 function imageapi_gd_requirements($phase) {
   $requirements = array();
   $t = get_t();
- 
+
   $gd = function_exists('imagegd2');
 
   if (!$gd) {
@@ -15,7 +15,7 @@ function imageapi_gd_requirements($phase
       '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/image.setup.php')),
     );
     return $requirements;
-  } 
+  }
 
   // report version.
   $info = gd_info();
@@ -25,14 +25,14 @@ function imageapi_gd_requirements($phase
     'severity' => REQUIREMENT_OK,
   );
 
-  // Check image format support 
+  // Check image format support
   foreach (array('gif', 'jpeg', 'png') as $format) {
     if (function_exists('imagecreatefrom'. $format)) continue;
     $requirements['imageapi_gd_'. $format] = array(
       'title' => $t('GD !format Support', array('!format' => drupal_ucfirst($format))),
       'value' => $t('Not installed'),
       'severity' => REQUIREMENT_ERROR,
-      'description' => $t('PHP GD was not compiled with %format support.', array('%format' => $format)), 
+      'description' => $t('PHP GD was not compiled with %format support.', array('%format' => $format)),
     );
   }
 
@@ -44,7 +44,7 @@ function imageapi_gd_requirements($phase
         'title' => $t('GD Image Rotation'),
         'value' => $t('Low Quality / Poor Performance'),
         'severity' => REQUIREMENT_WARNING,
-        'description' => $t('The installed version of PHP GD does not support image rotations. It was probably compiled using the official GD libraries from http://www.libgd.org instead of the GD library bundled with PHP. You should recompile PHP --with-gd using the bundled GD library. See: @url. An implementation of imagerotate in PHP will used in the interim.',  array('@url' => 'http://www.php.net/manual/en/image.setup.php')),
+        'description' => $t('The installed version of PHP GD does not support image rotations. It was probably compiled using the official GD libraries from <a href="http://www.libgd.org">http://www.libgd.org</a> instead of the GD library bundled with PHP. You should recompile PHP --with-gd using the bundled GD library. See <a href="http://www.php.net/manual/en/image.setup.php">PHP Manual</a> for more information. A slower implementation of imagerotate() written in PHP will used in the interim.'),
       );
     }
 
@@ -53,7 +53,7 @@ function imageapi_gd_requirements($phase
         'title' => $t('GD Image Filtering'),
         'value' => $t('Low Quality / Poor Performance'),
         'severity' => REQUIREMENT_WARNING,
-        'description' => $t('The installed version of PHP GD does not support image filtering(desaturate, blur, negate, etc). It was probably compiled using the official GD libraries from http://www.libgd.org instead of the GD library bundled with PHP. You should recompile PHP --with-gd using the bundled GD library. See @url. An implementation of imagefilter in PHP will be used in the interim.',  array('@url' => 'http://www.php.net/manual/en/image.setup.php')),
+        'description' => $t('The installed version of PHP GD does not support image filtering(desaturate, blur, negate, etc). It was probably compiled using the official GD libraries from <a href="http://www.libgd.org">http://www.libgd.org</a> instead of the GD library bundled with PHP. You should recompile PHP --with-gd using the bundled GD library. See <a href="http://www.php.net/manual/en/image.setup.php">PHP Manual</a> for more information. A slower implementation of imagefilter() written in PHP will be used in the interim.'),
       );
     }
 
