Quote:
Originally Posted by ozzy47
Yeah let me know how it goes, and we can proceed from there. 
|
I found the culprit was DB Tech's Post Thanks/Like product. Changing the execution order of your plugin in either direction seemed to have no effect.
So, I hacked your plugin code, and replaced the condition:
PHP Code:
!$vbulletin->GPC_exists['tab']
with:
PHP Code:
($vbulletin->userinfo['userid'] != $userinfo['userid']) || ($vbulletin->GPC['tab'] != 'thanks')
This way if a user is visiting their own profile because of a thanks notification, the "Post Thanks/Like" tab is used, otherwise the "About Me" tab is used (or whatever tab I define in the AdminCP via your product). This gives me the desired result, but if any unforeseen problems arise because of the change I made, I will let you know.