Hi,

I found another bug (BTW there are lots of them).
This time it's in "Search". If you search anything and select option: "in body", you'll get maximum allowed posts with no searched word.
For example try to find phrase: "abcabcabc" on your board. Compulsory check "in body". You'll get 37 results, all wrong.

Problem is in "dosearch.php" file.
You have to put the following lines:

AFTER:
if ($where == "sub") {$andquery .= "$andconcat (p.POST_SUBJECT LIKE '%$word%')";}

INSERT:
if ($where == "body") {$andquery .= "$andconcat p.POST_DEFAULT_BODY LIKE '%$word%')";}


AFTER:
if ($where == "sub") {$notquery .= "$notconcat (p.POST_SUBJECT NOT LIKE '%$word%')";}

INSERT:
if ($where == "body") {$notquery .= "$notconcat (p.POST_DEFAULT_BODY NOT LIKE '%$word%')";}

AFTER:
if ($where == "sub") {$orquery .= "$orconcat (p.POST_SUBJECT LIKE '%$word%')";}

INSERT:
if ($where == "body") { $orquery .= "$orconcat (p.POST_DEFAULT_BODY LIKE '%$word%')";}



That's all. Enjoy smile