Index: devel.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/devel/devel.module,v
retrieving revision 1.365
diff -u -r1.365 devel.module
--- devel.module	4 Nov 2009 22:18:46 -0000	1.365
+++ devel.module	5 Nov 2009 22:43:00 -0000
@@ -649,7 +649,7 @@
     }
     foreach ($users as $user) {
       $links[$user->uid] = array(
-        'title' => theme('placeholder', $user->name),
+        'title' => theme('placeholder', array('text' => $user->name)),
         'href' => 'devel/switch/'. $user->name,
         'query' => $dest,
         'attributes' => array('title' => t('This user can switch back.')),
@@ -943,7 +943,7 @@
   foreach ($ufunctions as $function) {
     $links[] = l($function, "http://$api/api/$version/function/$function");
   }
-  return theme('item_list', $links);
+  return theme('item_list', array('items' => $links));
 }
 
 function devel_get_core_version($version) {
@@ -1309,7 +1309,7 @@
   global $user;
   $output = kprint_r($_SESSION, TRUE);
   $headers = array(t('Session name'), t('Session ID'));
-  $output .= theme('table', $headers, array(array(session_name(), session_id())));
+  $output .= theme('table', array('header' => $headers, 'rows' => array(array(session_name(), session_id()))));
   return $output;
 }
 
@@ -1615,7 +1615,7 @@
   $output = '';
   if (!empty($header)) {
     $output .= "<div class='devel-querylog devel-querylog-header clear-block'>";
-    $output .= theme('devel_querylog_row', $header);
+    $output .= theme('devel_querylog_row', array('row' => $header));
     $output .= "</div>";
   }
   if (!empty($rows)) {
@@ -1624,7 +1624,7 @@
       $i++;
       $zebra = ($i % 2) == 0 ? 'even' : 'odd';
       $output .= "<div class='devel-querylog devel-querylog-$zebra clear-block'>";
-      $output .= theme('devel_querylog_row', $row);
+      $output .= theme('devel_querylog_row', array('row' => $row));
       $output .= "</div>";
     }
   }
