Quote:
Originally Posted by Dark Visor
Manual has been updated once more  Thanks, kall.
|
Did you catch the search.php error that causes each forum to show up twice if not in the excluded array?
In the install file,
HTML Code:
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
ADD AFTER
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
if (!in_array($forumid, explode(',', $bbuserinfo['excludeforumids'])))
{
eval('$searchforumbits .= "' . fetch_template('option') . '";');
}
Should be:
HTML Code:
FIND
eval('$searchforumbits .= "' . fetch_template('option') . '";');
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
REPLACE WITH
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
if (!in_array($forumid, explode(',', $bbuserinfo['excludeforumids'])))
{
eval('$searchforumbits .= "' . fetch_template('option') . '";');
}
As far as I can see, logically, the way you had it, it said: "If the forum is not in the excluded list, and the member has permission to see it, show it in the list of available forums to search. Then, If the member has permission to see it, show it in the list of available forums to search."
The way I have it, it is saying ONLY "If the forum is not in the excluded list, and the member has permission to see it, show it in the list of available forums to search."