1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[ticket/8323] Do not allow sending PMs to Inactive users

PHPBB3-8323
This commit is contained in:
Nathan
2012-07-04 20:52:07 -05:00
parent 6f4538c676
commit 0f4956b280
3 changed files with 3 additions and 3 deletions

View File

@@ -1194,7 +1194,7 @@ function handle_message_list_actions(&$address_list, &$error, $remove_u, $remove
if (sizeof($usernames))
{
$user_id_ary = array();
user_get_id_name($user_id_ary, $usernames, array(USER_NORMAL, USER_FOUNDER, USER_INACTIVE));
user_get_id_name($user_id_ary, $usernames, array(USER_NORMAL, USER_FOUNDER));
// If there are users not existing, we will at least print a notice...
if (!sizeof($user_id_ary))