The only problem I see with adding permissions to it is the fact that the index.php file is in the /messenger/ directory.
I tried to add a permission check by adding this to the bbmessenger/index.php file:
PHP Code:
require_once('../global.php');
//permissions check
if (!($permissions['adminpermissions'] & ISMODERATOR))
{
print_no_permission();
}
BUT, it wont work since the global.php file also needs an init.php but it's located in the includes/ dir.
So as you can see, we have a directory problem here.