Index: modules/dba/dba.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/dba/dba.module,v
retrieving revision 1.35
diff -u -r1.35 dba.module
--- modules/dba/dba.module	31 Oct 2005 23:58:22 -0000	1.35
+++ modules/dba/dba.module	28 Dec 2005 04:45:54 -0000
@@ -501,7 +501,7 @@
     $display = '<em>'. $table .'</em>';
     $result = db_query("SELECT * FROM %s WHERE %s = '%s'", $table, $key, $keyid);
     $row = db_fetch_array($result);
-    $rows[] = object2array($row);
+    $rows[] = (array)$row;
     $header = array_keys($row);
     $output = (theme('table', $header, $rows));
     $form['table'] = array('#type' => 'hidden', '#value' => $table);
@@ -686,7 +686,7 @@
       if (!$header) {
         $header = array_keys($row);
       }
-      $rows[] = object2array($row);
+      $rows[] = (array)$row;
     }
     return (theme('table', $header, $rows));
   }
@@ -821,7 +821,7 @@
 
   $header = array(t('Table'), t('Operation'), t('Message type'), t('Message text'));
   while ($row = db_fetch_object($result)) {
-    $rows[] = object2array($row);
+    $rows[] = (array)$row;
     if ($row->Msg_type == 'status') {
       $status = $row->Msg_text;
       if ($status != 'OK' && $status != 'Table is already up to date') {
@@ -873,7 +873,7 @@
   $header = array(t('Table'), t('Operation'), t('Message type'), t('Message text'));
   $rows = array();
   while ($row = db_fetch_object($result)) {
-    $rows[] = object2array($row);
+    $rows[] = (array)$row;
   }
   $output .= theme('table', $header, $rows);
 
