To get it to work properly in the search function there is a bug in Prince's code. The line that says:
$dpost=$DB_site->query_first("SELECT pagetext FROM post WHERE threadid='$thread[threadid]' ORDER BY dateline ASC LIMIT 1");
should say:
$dpost=$DB_site->query_first("SELECT pagetext FROM post WHERE threadid='$searchresult[threadid]' ORDER BY dateline ASC LIMIT 1");
|