Quote:
Originally Posted by MindStar
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.
|
This is a bug in vBAdvanced, not User Tagging. Changing the usertag plugin in that way will have other ramifications, as we did have that change implemented in the past and received multiple bug reports. vBAdvanced should set the <base> tag to the forum directory in order for notification links to work correctly.
Quote:
Originally Posted by karabaja3
I did not come here to write how this plugin is actually unfunctional, but for the fact I have an unsolvable problem after uninstallation. 
I tried with the Developer tools and code inspector in Chromium and FF to trace this code leftover, but I never managed to locate it in Templates or Phrases. Please help. Screenshot:

|
Remove the BBCode from your Custom BB Code manager in the ACP
Quote:
Originally Posted by lauxanh
Is there anyway to send quote,mention notification to PM instead of email?
|
Not at this time, sorry
Fillip