Index: README.txt
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/img_assist/README.txt,v
retrieving revision 1.20
diff -u -r1.20 README.txt
--- README.txt	18 Jan 2009 04:04:04 -0000	1.20
+++ README.txt	22 Feb 2009 19:06:26 -0000
@@ -51,7 +51,7 @@
 
 * Optionally fine tune how Image Assist operates by navigating to:
 
-  Administer >> Site configuration >> Image assist
+  Administer >> Site configuration >> Images >> Image assist
 
   If Taxonomy module is enabled, you use a gallery module like Acidfree, and you
   want your users to be able to easily choose images from their galleries, select
Index: img_assist.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/img_assist/img_assist.module,v
retrieving revision 1.100
diff -u -r1.100 img_assist.module
--- img_assist.module	13 Feb 2009 16:58:08 -0000	1.100
+++ img_assist.module	22 Feb 2009 19:05:59 -0000
@@ -15,7 +15,7 @@
  */
 function img_assist_help($path, $arg) {
   switch ($path) {
-    case 'admin/settings/img_assist':
+    case 'admin/settings/image/img_assist':
       return t('If this site was moved or is planned to move to another domain or sub-directory, it might be needed to <a href="!empty-cache">empty the filter cache</a> to correct image paths that are pointing to the old address.  Note that this will only work for images that have been inserted using filter tags.', array('!empty-cache' => url('img_assist/cache/clear')));
     
     case 'img_assist/template':
@@ -103,12 +103,13 @@
     'access arguments' => array('access content'),
     'type' => MENU_CALLBACK,
   );
-  $items['admin/settings/img_assist'] = array(
+  $items['admin/settings/image/img_assist'] = array(
     'title' => 'Image assist',
     'description' => 'Change settings for the Image assist module.',
     'page callback' => 'drupal_get_form',
     'page arguments' => array('img_assist_admin_settings'),
     'access arguments' => array('administer site configuration'),
+    'type' => MENU_LOCAL_TASK,
   );
   return $items;
 }
@@ -555,7 +556,7 @@
     cache_clear_all('*', $table, TRUE);
   }
   drupal_set_message('Cache cleared.');
-  drupal_goto('admin/settings/img_assist');
+  drupal_goto('admin/settings/image/img_assist');
 }
 
 /**

