Index: block.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/block/block.module,v
retrieving revision 1.244
diff -u -r1.244 block.module
--- modules/block/block.module	11 Dec 2006 23:00:09 -0000	1.244
+++ modules/block/block.module	17 Dec 2006 01:26:21 -0000
@@ -88,17 +88,15 @@
       'type' => MENU_LOCAL_TASK);
     $default = variable_get('theme_default', 'garland');
     foreach (list_themes() as $key => $theme) {
-      if ($theme->status) {
-        $items[] = array(
-          'path' => 'admin/build/block/list/'. $key,
-          'title' => t('!key settings', array('!key' => $key)),
-          'callback' => 'drupal_get_form',
-          'callback arguments' => array('block_admin_display', $key),
-          'access' => user_access('administer blocks'),
-          'type' => $key== $default ? MENU_DEFAULT_LOCAL_TASK : MENU_LOCAL_TASK,
-          'weight' => $key == $default ? -10 : 0,
-        );
-      }
+      $items[] = array(
+        'path' => 'admin/build/block/list/'. $key,
+        'title' => t('!key settings', array('!key' => $key)),
+        'callback' => 'drupal_get_form',
+        'callback arguments' => array('block_admin_display', $key),
+        'access' => user_access('administer blocks'),
+        'type' => $key == $default ? MENU_DEFAULT_LOCAL_TASK : MENU_LOCAL_TASK,
+        'weight' => $key == $default ? -10 : 0,
+      );
     }
   }
 
