the installation instruction says to replace
$forum_rows = $db->sql_fetchrowset($result);
with
$forum_rows = array_merge($forum_rows,$db->sql_fetchrowset($result));
my problem is there are two occurences of that line in admin_forumauth.php. should i replace both?
why two? (this could be another issue.) i've noticed that after the line
// no id was specified or just the requsted if it
// was
there's already a line that reads
$sql = "SELECT f.*
FROM " . FORUMS_TABLE . " f, " . CATEGORIES_TABLE . " c
WHERE c.cat_id = f.cat_id...
the install instruction does not say this should be replaced. that's how it ended up having two occurences of
$forum_rows = $db->sql_fetchrowset($result);

