### Eclipse Workspace Patch 1.0
#P NMH - SVN
Index: docroot/modules/acquia/views/includes/handlers.inc
===================================================================
--- docroot/modules/acquia/views/includes/handlers.inc	(revision 5326)
+++ docroot/modules/acquia/views/includes/handlers.inc	(working copy)
@@ -659,7 +659,7 @@
           $join->type = 'LEFT';
           if (!empty($this->handler->view->many_to_one_tables[$field])) {
             foreach ($this->handler->view->many_to_one_tables[$field] as $value) {
-              $join->extra = array(
+              $join->extra[] = array(
                 array(
                   'field' => $this->handler->real_field,
                   'operator' => '!=',
@@ -685,7 +685,7 @@
           if ($this->handler->operator == 'and') {
             $join->type = 'INNER';
           }
-          $join->extra = array(
+          $join->extra[] = array(
             array(
               'field' => $this->handler->real_field,
               'value' => $value,
@@ -1260,6 +1260,7 @@
       if (is_array($this->extra)) {
         $extras = array();
         foreach ($this->extra as $info) {
+          if(is_array($info)) $info=$info[0];
           $extra = '';
           // Figure out the table name. Remember, only use aliases provided
           // if at all possible.
