Allow global volunteers to PM users.

This commit is contained in:
guy9000 2015-06-12 04:31:00 -04:00
parent 85b4da793c
commit 8ebdc7a69a

View File

@ -2317,8 +2317,8 @@ function mod_new_pm($username) {
}
}
// Lock users into only being able to message users assigned to their board.
if (!hasPermission($config['mod']['pm_all'])) {
// Lock users into only being able to message users assigned to their board; Exclude global volunteers.
if (!hasPermission($config['mod']['clean_global']) {
if ($mod['boards'][0] != $row['boards'] && !($row['boards'] === '*')) {
error(_('You may only PM users assigned to your board'));
}