I tried to build some views with space_taxonomy and noticed that no nodes where retrieved even when correct space was set. I found that SID was used as space id in space_taxonomy.inc -> views_filter. I imagine this has changed to ID in spaces 3. So on line 83 in space_taxonomy.inc it should say $this->id not $this->sid. This fixed the views filter for taxonomy spaces.
Change line 83 to:
$query->add_where(0, "$table.tid = %d", $this->id);
Comments
Comment #1
yhahn commentedThanks. http://drupal.org/cvs?commit=359650