Quote:
Originally Posted by Rick7C2
Bump!
|
Known Bugs:
There is a conflict with this modification and some of Valter's VSA modifications that will prevent navbar permissions from being handled correctly. I don't know exactly who's fault it is; but I'm pretty sure there are no errors in my code that would be causing this problem. There is a work around for this however.
Admin Control Panel > Plugins & Products > Plugin Manager > "media NAVTAB"
Find the code:
Code:
PHP Code:
$perms = media_permissions();
Replace with:
Code:
PHP Code:
$perms['rate'] = true;
$perms['comment'] = true;
$perms['submit'] = true;
if (is_member_of($vbulletin->userinfo, explode(',','5,6')))
{
$perms['modtags'] = true;
$perms['modcategory'] = true;
$perms['modservice'] = true;
}