Index: theme/theme.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/views/theme/theme.inc,v
retrieving revision 1.70
diff -u -p -r1.70 theme.inc
--- theme/theme.inc	6 Feb 2009 21:13:04 -0000	1.70
+++ theme/theme.inc	5 Apr 2009 17:03:11 -0000
@@ -298,8 +298,9 @@ function template_preprocess_views_view_
   // Fields must be rendered in order as of Views 2.3, so we will pre-render
   // everything.
   $renders = array();
+  $keys = array_keys($view->field);
   foreach ($result as $count => $row) {
-    foreach ($view->field as $id => $field) {
+    foreach ($keys as $id) {
       $renders[$count][$id] = $view->field[$id]->theme($row);
     }
   }
