@ X-Fan:
I found the problem in your search.php - Geez, it was obvious.
In your search.php:
Find this:
PHP Code:
// search thread
" WHERE post.visible=1 AND $newpostsql $searchthreadquery $search[query]");
// search thread
Change it to:
PHP Code:
" WHERE post.visible=1 AND $newpostsql $searchthreadquery $search[query]");
Get rid of the //search thread bits. You CANNOT put // comments in the MIDDLE of a query!!!
Same goes for this:
PHP Code:
// search thread
$postids AND $searchthreadquery thread.threadid=post.threadid
// search thread
Change it to:
PHP Code:
$postids AND $searchthreadquery thread.threadid=post.threadid
I repeat - you CANNOT put // comments in the MIDDLE of a QUERY!!!
Look at the code - that whole paragraph is ONE line of code on separate lines - you cannot just put // comments in the middle of it.

Don't go adding lines to my hack, and then blaming my hack.