Hi,
I found a small bug in the following plugin:
Plug-in Viewable Ban List (3)
HTML Code:
if ($vbulletin->options['banlist_template_edit']) {
$template_hook['navbar_community_menu_end'] .= '<td class="vbmenu_option"><a href="misc.php?do=banlist">Ban List</a></td>';
}
should be:
HTML Code:
if ($vbulletin->options['banlist_template_edit']) {
$template_hook['navbar_community_menu_end'] .= '<td class="vbmenu_option"><a href="misc.php?do=banlist">PHRASE</a></td>';
}
For all multi language systems PHRASE should be a vbulletin phrase like the product phase "banlist"
You can change the content of the plugin to:
HTML Code:
if ($vbulletin->options['banlist_template_edit']) {
$template_hook['navbar_community_menu_end'] .= '<td class="vbmenu_option"><a href="misc.php?do=banlist">'.$vbphrase['banlist'].'</a></td>';
}
to make it working