aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_user.php
diff options
context:
space:
mode:
authorOleg Pudeyev <oleg@bsdpower.com>2012-12-15 01:29:10 -0500
committerOleg Pudeyev <oleg@bsdpower.com>2012-12-15 16:50:28 -0500
commite82833d4b8bc9241641577b12a779e12338ace39 (patch)
treef2fb1e9de2bfad363ba617934e5a82efc9ef79fa /phpBB/includes/functions_user.php
parent5c496674f63b31e892d0f3bed7921feb947ed839 (diff)
downloadforums-e82833d4b8bc9241641577b12a779e12338ace39.tar
forums-e82833d4b8bc9241641577b12a779e12338ace39.tar.gz
forums-e82833d4b8bc9241641577b12a779e12338ace39.tar.bz2
forums-e82833d4b8bc9241641577b12a779e12338ace39.tar.xz
forums-e82833d4b8bc9241641577b12a779e12338ace39.zip
[ticket/10758] Dependency inject parameters into update_foes.
Also add phpbb prefix since the signature is being changed anyway. PHPBB3-10758
Diffstat (limited to 'phpBB/includes/functions_user.php')
-rw-r--r--phpBB/includes/functions_user.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/functions_user.php b/phpBB/includes/functions_user.php
index 2d6c15a5b1..a50d5175fe 100644
--- a/phpBB/includes/functions_user.php
+++ b/phpBB/includes/functions_user.php
@@ -3730,12 +3730,12 @@ function group_update_listings($group_id)
if ($mod_permissions || $admin_permissions)
{
- if (!function_exists('update_foes'))
+ if (!function_exists('phpbb_update_foes'))
{
global $phpbb_root_path, $phpEx;
include($phpbb_root_path . 'includes/functions_admin.' . $phpEx);
}
- update_foes(array($group_id));
+ phpbb_update_foes($db, $auth, array($group_id));
}
}