Index: multiblock.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/multiblock/multiblock.module,v
retrieving revision 1.1.2.1
diff -u -r1.1.2.1 multiblock.module
--- multiblock.module	18 May 2008 00:39:13 -0000	1.1.2.1
+++ multiblock.module	28 May 2008 22:30:03 -0000
@@ -8,12 +8,13 @@
   $items = array();
   if ($may_cache) {
     $items[] = array(
-        'path' => 'admin/build/multiblock',
-        'title' => t('Block Instances'),
+        'path' => 'admin/build/block/instances',
+        'title' => t('Instances'),
         'description' => t('Create and delete instances of blocks.'),
         'callback' =>  'multiblock_general',
         'access' => user_access('administer blocks'),
-        'type' => MENU_NORMAL_ITEM,
+        'type' => MENU_LOCAL_TASK,
+        'weight' => -1,
     );
     $items[] = array(
       'path' => 'multiblock/delete',
Index: README
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/multiblock/README,v
retrieving revision 1.1
diff -u -r1.1 README
--- README	29 Feb 2008 20:26:31 -0000	1.1
+++ README	28 May 2008 22:30:03 -0000
@@ -9,7 +9,7 @@
 multiblock module will keep track of multiple instances of blocks
 and dispatch to their appropriate block hooks. Using this stratgey,
 you would not enable any blocks that are implemented by other
-modules. Instead, you will go to admin/build/multiblock and create
+modules. Instead, you will go to admin/build/block/instances and create
 an "instance" of a block. Multiblock module will then implement this
 block in its own block hook which will forward any hook_block calls
 to the original module's hook. Using this method we can maintain
@@ -22,7 +22,7 @@
 region, etc.) for one set of data.
 
 HOW TO USE IT:
-1. Go to admin/build/multiblock
+1. Go to admin/build/block/instances
 2. Select the type of block you want to create an instance of and
    type a unique title for that instance
 3. Click "Add Instance"
