aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_privmsgs.php
diff options
context:
space:
mode:
authorrxu <rxu@mail.ru>2012-03-22 21:19:01 +0800
committerrxu <rxu@mail.ru>2012-03-22 21:19:01 +0800
commit5a9dd1994fc20aaebe3145540b630826d7333998 (patch)
tree6ab5526c89efb81b60dbdc2e53620bfc61019dd4 /phpBB/includes/functions_privmsgs.php
parentff8d5237688beee9ea36848e1ac49565e538c2cd (diff)
downloadforums-5a9dd1994fc20aaebe3145540b630826d7333998.tar
forums-5a9dd1994fc20aaebe3145540b630826d7333998.tar.gz
forums-5a9dd1994fc20aaebe3145540b630826d7333998.tar.bz2
forums-5a9dd1994fc20aaebe3145540b630826d7333998.tar.xz
forums-5a9dd1994fc20aaebe3145540b630826d7333998.zip
[ticket/10684] Adjust function and parameter name, minor changes.
PHPBB3-10684
Diffstat (limited to 'phpBB/includes/functions_privmsgs.php')
-rw-r--r--phpBB/includes/functions_privmsgs.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/functions_privmsgs.php b/phpBB/includes/functions_privmsgs.php
index 4ea8f74153..447920cfd5 100644
--- a/phpBB/includes/functions_privmsgs.php
+++ b/phpBB/includes/functions_privmsgs.php
@@ -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))