Hi i think i found a small "BUG".
with this
PHP Code:
while ($forum = $db->fetch_array($prefixforums))
{
array_push($prefix_forums, $forum['forumid']);
}
you kill the vbulletin $forum array in showthread.php
i used to put the forum-title of a thread ($forum[title]) into the page-title to get better keywords (SEO). after i installed this addon, the forum-title was never shown in the page title, because
$forum[title] does not exist anymore.
is it possible to solve this problem?
edit:
a workaround for me is to put the value of $forum[title] into another variable at the beginning of the plugin and use this variable in the template.