? imagecache-DRUPAL-5--2.user_.patch
? imagecache-user.patch
? imagecache_update4.patch
? patch_53.patch
Index: imagecache_ui.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/imagecache/imagecache_ui.module,v
retrieving revision 1.11
diff -u -p -r1.11 imagecache_ui.module
--- imagecache_ui.module	24 Apr 2008 05:27:45 -0000	1.11
+++ imagecache_ui.module	6 Jan 2009 03:30:01 -0000
@@ -131,7 +131,7 @@ function imagecache_ui_preset_add_form($
     '#size' => '64',
     '#title' => t('Preset Namespace'),
     '#default_value' => '',
-    '#description' => t('The namespace is used in URL\'s for images to tell imagecache how to process an image. Please only use alphanumic characters, underscores (_), and hyphens (-) for preset names.'),
+    '#description' => t('The namespace is used in URLs for images to tell imagecache how to process an image. Please only use alphanumeric characters, underscores (_), and hyphens (-) for preset names.'),
     '#validate' => array('imagecache_element_presetname_validate' => array()),
   );
   $form['submit'] = array(
@@ -157,7 +157,7 @@ function imagecache_element_presetname_v
 
   // Check for illegal characters in preset names
   if (preg_match('/[^0-9a-zA-Z_\-]/', $element['#value'])) {
-    form_set_error($element['#name'], t('Please only use alphanumic characters, underscores (_), and hyphens (-) for preset names.'));
+    form_set_error($element['#name'], t('Please only use alphanumeric characters, underscores (_), and hyphens (-) for preset names.'));
   }
 }
 
@@ -235,7 +235,7 @@ function imagecache_ui_preset_form($pres
     '#size' => '64',
     '#title' => t('Preset Namespace'),
     '#default_value' => $preset['presetname'],
-    '#description' => t('The namespace is used in URL\'s for images to tell imagecache how to process an image. Please only use alphanumic characters, underscores (_), and hyphens (-) for preset names.'),
+    '#description' => t('The namespace is used in URLs for images to tell imagecache how to process an image. Please only use alphanumeric characters, underscores (_), and hyphens (-) for preset names.'),
     '#validate' => array('imagecache_element_presetname_validate' => array()),
   );
   $form['presetid'] = array(
