Index: update.php
===================================================================
RCS file: /cvs/drupal/drupal/update.php,v
retrieving revision 1.211
diff -u -p -r1.211 update.php
--- update.php	25 Dec 2006 21:22:03 -0000	1.211
+++ update.php	31 Jan 2007 15:06:19 -0000
@@ -529,7 +529,7 @@ function update_finished_page($success) 
   $output .= theme('item_list', $links);
 
   // Output a list of queries executed
-  if ($_SESSION['update_results']) {
+  if (isset($_SESSION['update_results'])) {
     $output .= '<div id="update-results">';
     $output .= '<h2>The following queries were executed</h2>';
     foreach ($_SESSION['update_results'] as $module => $updates) {
Index: modules/node/content_types.inc
===================================================================
RCS file: /cvs/drupal/drupal/modules/node/content_types.inc,v
retrieving revision 1.24
diff -u -p -r1.24 content_types.inc
--- modules/node/content_types.inc	9 Jan 2007 07:53:26 -0000	1.24
+++ modules/node/content_types.inc	31 Jan 2007 15:06:19 -0000
@@ -34,9 +34,8 @@ function node_overview_types() {
         $operations[] = array('data' => '');
       }
 
-      $row = array(array('data' => l($name, 'admin/content/types/'. $type_url_str), 'class' => $class), array('data' => check_plain($type->type), 'class' => $class), array('data' => check_plain($type->description), 'class' => $class));
+      $row = array(l($name, 'admin/content/types/'. $type_url_str), check_plain($type->type), check_plain($type->description));
       foreach ($operations as $operation) {
-        $operation['class'] = $class;
         $row[] = $operation;
       }
       $rows[] = $row;
