Index: contrib/image_attach/image_attach.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/image/contrib/image_attach/image_attach.install,v
retrieving revision 1.15
diff -u -p -r1.15 image_attach.install
--- contrib/image_attach/image_attach.install	1 Feb 2009 00:36:43 -0000	1.15
+++ contrib/image_attach/image_attach.install	9 Aug 2009 21:56:07 -0000
@@ -107,3 +107,16 @@ function image_attach_update_6100() {
   return $ret;
 }
 
+/**
+ * Delete bad entry in {blocks} table due to old bug.
+ * Next visit to blocks admin page will rehash and show the block.
+ * @see <http://drupal.org/node/426724>
+ */
+function image_attach_update_6101() {
+  $ret = array();
+  $ret[] = update_sql("DELETE FROM {blocks} WHERE blocks.module = 'image_attach'");
+
+  return $ret;  
+}
+
+
Index: contrib/image_attach/image_attach.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/image/contrib/image_attach/image_attach.module,v
retrieving revision 1.50
diff -u -p -r1.50 image_attach.module
--- contrib/image_attach/image_attach.module	8 Aug 2009 16:16:18 -0000	1.50
+++ contrib/image_attach/image_attach.module	9 Aug 2009 21:56:08 -0000
@@ -66,7 +66,6 @@ function image_attach_block($op = 'list'
     case 'list':
       $blocks[0] = array(
         'info'       => t('Attached images'),
-        'status'     => TRUE,
         'weight'     => 0,
         'visibility' => 1,
         'pages'      => 'node/*',
