Index: modules/system/system.admin.inc
===================================================================
RCS file: /cvs/drupal/drupal/modules/system/system.admin.inc,v
retrieving revision 1.52
diff -u -r1.52 system.admin.inc
--- modules/system/system.admin.inc	8 Jan 2008 21:25:05 -0000	1.52
+++ modules/system/system.admin.inc	9 Jan 2008 03:34:45 -0000
@@ -1773,7 +1773,9 @@
 
   $result = db_query("SHOW STATUS");
   while ($entry = db_fetch_object($result)) {
-    $data[$entry->variable_name] = $entry->value;
+    // 'SHOW STATUS' returns fields named 'Variable_name' and 'Value', so we
+    // need to use title case to match.
+    $data[$entry->Variable_name] = $entry->Value;
   }
 
   $output  = '<h2>'. t('Command counters') .'</h2>';
