Quote:
Originally Posted by patrick91
Thnx! but i don't see it... :S i have everything on yes and with administrater rights i see none options for media libary..
|
you using vsachat ? if so
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;
}