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

yhahn’s picture

Status: Active » Fixed

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.