Speaking of permissions, if anyone is interested in tying the permissions on the album to the memberlist security field, just add this to album.php:
PHP Code:
Find:
$perpage = $vboptions['album_perpage'];
$pertr = $vboptions['album_pertr'];
Under it, add:
// permissions check
if (!($permissions['forumpermissions'] & CANVIEW) OR !($permissions['genericpermissions'] & CANVIEWMEMBERS))
{
print_no_permission();
}