? contrib-5.imageapi.typos_.junyor.patch
? imageapi_232623_3.patch
? imageapi_gd_install_0.patch
Index: imageapi.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/imageapi/imageapi.module,v
retrieving revision 1.16
diff -u -p -r1.16 imageapi.module
--- imageapi.module	30 Apr 2008 15:42:40 -0000	1.16
+++ imageapi.module	29 May 2008 02:39:32 -0000
@@ -300,7 +300,7 @@ function imageapi_image_open($file, $too
  *
  * @param $destination
  *   destination path where image should be saved. If it is empty the original image will
- *   be over written.
+ *   be overwritten.
  */
 function imageapi_image_close($image, $destination = '') {
   if (empty($destination)) {
Index: imageapi_gd.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/imageapi/imageapi_gd.install,v
retrieving revision 1.5
diff -u -p -r1.5 imageapi_gd.install
--- imageapi_gd.install	29 May 2008 02:35:31 -0000	1.5
+++ imageapi_gd.install	29 May 2008 02:39:32 -0000
@@ -59,7 +59,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 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 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')),
       );
     }
   }
Index: imageapi_imagemagick.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/imageapi/imageapi_imagemagick.module,v
retrieving revision 1.11
diff -u -p -r1.11 imageapi_imagemagick.module
--- imageapi_imagemagick.module	30 Apr 2008 15:42:40 -0000	1.11
+++ imageapi_imagemagick.module	29 May 2008 02:39:32 -0000
@@ -52,7 +52,7 @@ function imageapi_imagemagick_settings_f
     '#type' => 'checkbox',
     '#title' => t('Display debugging information'),
     '#default_value' => variable_get('imageapi_imagemagick_debugging', 0),
-    '#description' => t('Checking this option will display the ImageMagick commands and ouput to users with the <em>administer site configuration</em> permission.'),
+    '#description' => t('Checking this option will display the ImageMagick commands and output to users with the <em>administer site configuration</em> permission.'),
     '#weight' => 2,
   );
 
@@ -164,7 +164,7 @@ function _imageapi_imagemagick_check_pat
     $errors[] = t('The specified ImageMagick path %file is not executable.', array('%file' => $path));
   }
   if ($errors && $open_basedir = ini_get('open_basedir')) {
-    $errors[] = t('PHP\'s <a href="!open-basedir">open_basedir</a> security resriction is set to %open-basedir, which may be interfering with attempts to locate ImageMagick.', array('%file' => $path, '%open-basedir' => $open_basedir, '!info-link' => url('http://php.net/features.safe-mode#ini.open-basedir')));
+    $errors[] = t('PHP\'s <a href="!open-basedir">open_basedir</a> security restriction is set to %open-basedir, which may be interfering with attempts to locate ImageMagick.', array('%file' => $path, '%open-basedir' => $open_basedir, '!info-link' => url('http://php.net/features.safe-mode#ini.open-basedir')));
   }
   return $errors;
 }
