=== modified file 'sites/all/modules/editview/theme/editview.theme.inc'
--- theme/editview.theme.inc	2011-06-18 22:27:22 +0000
+++ theme/editview.theme.inc	2011-06-18 23:36:49 +0000
@@ -111,7 +111,7 @@
       $taxonomies = array();
       $limit = $field->options['limit'];
       foreach ($field->options['vids'] as $vid => $include) {
-        if (!$limit or $include) {
+        if ((!$limit or $include) && isset($form['taxonomy'])) {
           if (array_key_exists('tags', $form['taxonomy']) && array_key_exists($vid, $form['taxonomy']['tags'])) {
             $taxonomies[] = drupal_render($form['taxonomy']['tags'][$vid]);
           } 

