If the admin section is not displaying for you in the admincp, here is a quick fix.
Go to plugin manager and find
vBulletin-Linklist: Can administrate linklist, under Plugin PHP Code change this:
PHP Code:
foreach($do AS $field)
{
if (isset($bits["$field"]) AND ($admin['linklistpermissions'] & $bits["$field"]))
{
$return_value = true;
break;
}
to this:
PHP Code:
foreach($do AS $field)
{
//if (isset($bits["$field"]) AND ($admin['linklistpermissions'] & $bits["$field"]))
{
$return_value = true;
break;
}
It's ugly, but it works.