I got Another error.
Quote:
MySQL Error : Unknown column 'thread.forumid' in 'where clause'
Error Number : 1054
|
Then, I hard coded my table prefix...
Quote:
$results = $db->query_read("SELECT * FROM ". TABLE_PREFIX ."thread WHERE `title` LIKE '%$query%' AND `thread`.`forumid` NOT IN (0 $excludelist)");
---------->
$results = $db->query_read("SELECT * FROM ". TABLE_PREFIX ."thread WHERE `title` LIKE '%$query%' AND ". TABLE_PREFIX ."thread . forumid NOT IN (0 $excludelist)");
|
Now works fine....
BTW, Awesome mod !!!!
Thanks, Coderphp