Quote:
Today at 08:23 PM DarkDraco07 said this in Post #1652
anyone know how to keep it from displaying battle threads in new post search? i want them to be recorded but not displayed there
|
first, get its forumid
second, in search.php
look for
PHP Code:
if ($action=="getnew") {
about 20 lines below that u will see
PHP Code:
$wheresql.=" AND thread.open<>10";
change it to (replace XXXXX with that forumid)
PHP Code:
$wheresql.=" AND forumid != XXXXX AND thread.open<>10";