i have a similar problem: i want to get
-all items from a list if they match the ID
TOGETHER WITH
-all items wich are marked as global, regardeless of their ID
$search= $pages->find("offer_global=1|offer_from='22|33|44|55");
wont work...
isnt there something like:
$search= $pages->find("offer_global=1|(offer_from='22|33|44|55"));
?