1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-08 09:46:46 +02:00

[ticket/10684] Adjust function and parameter name, minor changes.

PHPBB3-10684
This commit is contained in:
rxu
2012-03-22 21:19:01 +08:00
parent ff8d523768
commit 5a9dd1994f
3 changed files with 9 additions and 9 deletions

View File

@@ -1630,11 +1630,11 @@ function pm_notification($mode, $author, $recipients, $subject, $message, $msg_i
return;
}
if (!function_exists('phpbb_get_banned_users_ids'))
if (!function_exists('phpbb_get_banned_user_ids'))
{
include($phpbb_root_path . 'includes/functions_user.' . $phpEx);
}
$banned_users = phpbb_get_banned_users_ids(array_keys($recipients));
$banned_users = phpbb_get_banned_user_ids(array_keys($recipients));
$recipients = array_diff(array_keys($recipients), $banned_users);
if (!sizeof($recipients))