Found a bug in
dbtech/usertag/hooks/notifications_list.php
each reference to
usertag.php should be prefixed by
$vbulletin->options[bburl]
i.e. replace
Code:
'link' => 'usertag.php?' ...
with
Code:
'link' => $vbulletin->options[bburl] . '/usertag.php?' ...
so it looks like
Code:
if (!(bool)($vbulletin->userinfo['dbtech_usertag_settings'] & 8) AND !(bool)($vbulletin->options['dbtech_usertag_disabledfeatures'] & 1))
{
$notifications['dbtech_usertag_mentioncount'] = array(
'phrase' => $vbphrase['dbtech_usertag_new_mentions'],
'link' => $vbulletin->options[bburl] . '/usertag.php?' . $vbulletin->session->vars['sessionurl'] . 'do=profilenotif&tab=mentions',
'order' => 110
);
}
else the links are broken if the notifications menu items that are appended to the PM notification menu are broken if the menu is used on a page outside of the forum folder/directory, e.g. when using vB Advanced CMPS to have a custom forum homepage rather than showing the forum index.
I believe that references to
usertag.php in
product-dbtech_usertag.xml also need the same treatment.
There may be other references to
usertag.php that also need prefixing that I haven't stumbled across yet.
Cheers,
Marco.