Xenforo redirects for vBulletin checks for guest permissions instead of current user permissions

K a M a L

Well-known member
Affected version
1.1.5
I'm not sure if this is the correct forum to post a bug report about an official addon or not .
I've installed Xenforo redirects for vBulletin today at one forum where guests not allowed to view threads and got no permission error while using super admin account
apparently this code fails
PHP:
if (is_callable([$content, $method]) && !$content->$method())
{
                    return $this->noPermission();
}
so
PHP:
$threadEntity->canView();
returns false because visitor is not setup
 
Last edited:
We couldn't reproduce the first issue.

We fixed this one a while ago:
showthread.php?s=c58d26590ab03db4f2922f475b674566&t=16187

This one is fixed in XF301VB 1.1.8:
showthread.php?mode=hybrid&t=48429

FWIW the discussion thread for that resource is the best place to report bugs.
 
Top Bottom