I grabbed a fresh vbulletin to my laptop and looked at some of the code. I am not sitting at my development station so I cannot test this.
This is a quick fix, but it also banishes the administrator from seeing the
private blogs.
Code:
"/includes/blog_functions_share.php"
approximately line #46. Try commenting out
"$issupermod = TRUE". See below:
Code:
if ($modinfo['permissions']['adminpermissions'] & $vbulletin->bf_ugp_adminpermissions['ismoderator'])
{
DEVDEBUG(' USER IS A SUPER MODERATOR');
// $issupermod = true; // <-- Comment this out.
}
Once I am at my development station we should be able to come up with a more solid fix. Anyway, let me know if this works.
The only time I have used the blogging system is for my daughters board. So I do not have a firm grasp on the permissions, but I clearly see in the code where privacy permissions are bypassed for supermoderators.