Merge pull request #11 from ryanwachtl/patch-1

BUG getList() now returns the filtered DataList
This commit is contained in:
Julian Seidenberg 2013-03-10 14:40:53 -07:00
commit e4ea9a8a0f

View File

@ -49,7 +49,7 @@ class ShortCodeRelationFinder {
}
}
$list->where(implode(' OR ',$where));
$list = $list->where(implode(' OR ', $where));
return $list;
}
@ -78,4 +78,4 @@ class ShortCodeRelationFinder {
return $fields;
}
}
}