Just open up search.php, and look for:
Code:
$searchresults=$DB_site->query("SELECT DISTINCT
threadid,
lastpost
FROM thread
WHERE visible=1 $checkforum $subjectonly $checkuser $checkdate $combinedwords
ORDER BY lastpost DESC");
Add a forumid to the last line, and you're good to go:
Code:
$searchresults=$DB_site->query("SELECT DISTINCT
threadid,
lastpost
FROM thread
WHERE visible=1 $checkforum $subjectonly $checkuser $checkdate $combinedwords
ORDER BY forumid, lastpost DESC");
Try
that with UBB!
eva, its possible -- but at bit too much for my concentration level at 3 AM. ;-)