Message Text |
Hey Paul,
Another problem with searching. Consider this simple search:
<form action="search.php?action=filter&filled=1&whichtype=links&condition=and" method="post" >
-------------------
<input type="hidden" name="kiadoeladocondition" value="and" />
<select name="kiadoeladosearch">
<option value="For Rent">For Rent</option>
<option value="For Sale">For Sale</option>
</select>
<input type="hidden" name="incatcondition" value="and" />
<select name="incatsearch">
<option value="">In all categories</option>
{ CATOPTIONS }
</select>
-------------------
If I do a search where I select 'For Rent' and leave the categories at 'in all categories', then it returns all the result for all 'For Rent' listings. This is fine.
If I do a search where I select 'For Rent' and select a category where I KNOW there aren't any links listed, it STILL returns the same values as in the previous search. As if it did an 'or' type search.
I tried to even use a '=' type search, but I get the same problem.
Thanks
David |