I am trying to do a search based on an OR filter. Based
on whether the listing OR the photo has been modified since the last time the
script was run. It looks something like this:
$search =
$rets->Search("Property","RESD","(Property_Status=|A),(rets_photo_timestamp=2011-11-28+)",
array( 'Count'=> 2 ));
Where the search parameters are:
(Property_Status=|A),(rets_photo_timestamp=2011-11-28+)
I need to also search if the property listing was
modified, so an OR for:
(sys_Last_Modified=2011-11-28+)
Using either search works, but I need to check for
both.