? drupal-7.x-dev-464556.patch
Index: install.php
===================================================================
RCS file: /cvs/drupal/drupal/install.php,v
retrieving revision 1.168
diff -u -p -r1.168 install.php
--- install.php	12 May 2009 08:37:44 -0000	1.168
+++ install.php	16 May 2009 17:43:26 -0000
@@ -159,6 +159,7 @@ function install_main() {
   install_tasks($profile, $task);
 }
 
+
 /**
  * Verify if Drupal is installed.
  */
@@ -560,7 +561,7 @@ function install_select_locale($profilen
     install_task_list('locale-select');
 
     drupal_set_title(st('Choose language'));
-    
+
     print theme('install_page', drupal_render(drupal_get_form('install_select_locale_form', $locales)));
     exit;
   }
Index: includes/theme.maintenance.inc
===================================================================
RCS file: /cvs/drupal/drupal/includes/theme.maintenance.inc,v
retrieving revision 1.26
diff -u -p -r1.26 theme.maintenance.inc
--- includes/theme.maintenance.inc	12 May 2009 13:43:44 -0000	1.26
+++ includes/theme.maintenance.inc	16 May 2009 17:43:26 -0000
@@ -149,6 +149,44 @@ function theme_install_page($content) {
   return theme_render_template('themes/garland/maintenance-page.tpl.php', $variables);
 }
 
+
+/**
+ * Theme requirements status report.
+ *
+ * @param $requirements
+ *   An array of requirements.
+ * @ingroup themeable
+ */
+function theme_status_report($requirements) {
+  $i = 0;
+  $output = '<table class="system-status-report">';
+  foreach ($requirements as $requirement) {
+    if (empty($requirement['#type'])) {
+      $class = ++$i % 2 == 0 ? 'even' : 'odd';
+
+      $classes = array(
+        REQUIREMENT_INFO => 'info',
+        REQUIREMENT_OK => 'ok',
+        REQUIREMENT_WARNING => 'warning',
+        REQUIREMENT_ERROR => 'error',
+      );
+      $class = $classes[isset($requirement['severity']) ? (int)$requirement['severity'] : 0] . ' ' . $class;
+
+      // Output table row(s)
+      if (!empty($requirement['description'])) {
+        $output .= '<tr class="' . $class . ' merge-down"><th>' . $requirement['title'] . '</th><td>' . $requirement['value'] . '</td></tr>';
+        $output .= '<tr class="' . $class . ' merge-up"><td colspan="2">' . $requirement['description'] . '</td></tr>';
+      }
+      else {
+        $output .= '<tr class="' . $class . '"><th>' . $requirement['title'] . '</th><td>' . $requirement['value'] . '</td></tr>';
+      }
+    }
+  }
+
+  $output .= '</table>';
+  return $output;
+}
+
 /**
  * Generate a themed update page.
  *
Index: modules/system/system.admin.inc
===================================================================
RCS file: /cvs/drupal/drupal/modules/system/system.admin.inc,v
retrieving revision 1.144
diff -u -p -r1.144 system.admin.inc
--- modules/system/system.admin.inc	15 May 2009 03:38:25 -0000	1.144
+++ modules/system/system.admin.inc	16 May 2009 17:43:30 -0000
@@ -2024,42 +2024,7 @@ function theme_system_admin_by_module($m
   return $output;
 }
 
-/**
- * Theme requirements status report.
- *
- * @param $requirements
- *   An array of requirements.
- * @ingroup themeable
- */
-function theme_status_report($requirements) {
-  $i = 0;
-  $output = '<table class="system-status-report">';
-  foreach ($requirements as $requirement) {
-    if (empty($requirement['#type'])) {
-      $class = ++$i % 2 == 0 ? 'even' : 'odd';
-
-      $classes = array(
-        REQUIREMENT_INFO => 'info',
-        REQUIREMENT_OK => 'ok',
-        REQUIREMENT_WARNING => 'warning',
-        REQUIREMENT_ERROR => 'error',
-      );
-      $class = $classes[isset($requirement['severity']) ? (int)$requirement['severity'] : 0] . ' ' . $class;
-
-      // Output table row(s)
-      if (!empty($requirement['description'])) {
-        $output .= '<tr class="' . $class . ' merge-down"><th>' . $requirement['title'] . '</th><td>' . $requirement['value'] . '</td></tr>';
-        $output .= '<tr class="' . $class . ' merge-up"><td colspan="2">' . $requirement['description'] . '</td></tr>';
-      }
-      else {
-        $output .= '<tr class="' . $class . '"><th>' . $requirement['title'] . '</th><td>' . $requirement['value'] . '</td></tr>';
-      }
-    }
-  }
 
-  $output .= '</table>';
-  return $output;
-}
 
 /**
  * Theme callback for the modules form.
