aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_user.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2007-02-02 15:36:43 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2007-02-02 15:36:43 +0000
commit7c8f4431d346ed17ae9d8b8c13bd27987913f386 (patch)
tree04b39f18ccc282f0bd902381c3b1c9200008ca5c /phpBB/includes/functions_user.php
parentc83a2fa1d3acf39efdb1441f4049e0825aa23a9b (diff)
downloadforums-7c8f4431d346ed17ae9d8b8c13bd27987913f386.tar
forums-7c8f4431d346ed17ae9d8b8c13bd27987913f386.tar.gz
forums-7c8f4431d346ed17ae9d8b8c13bd27987913f386.tar.bz2
forums-7c8f4431d346ed17ae9d8b8c13bd27987913f386.tar.xz
forums-7c8f4431d346ed17ae9d8b8c13bd27987913f386.zip
only very tiny fixes.
git-svn-id: file:///svn/phpbb/trunk@6956 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions_user.php')
-rw-r--r--phpBB/includes/functions_user.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/phpBB/includes/functions_user.php b/phpBB/includes/functions_user.php
index 933124ce28..3ef03ece67 100644
--- a/phpBB/includes/functions_user.php
+++ b/phpBB/includes/functions_user.php
@@ -2508,6 +2508,11 @@ function group_update_listings($group_id)
if ($mod_permissions || $admin_permissions)
{
+ if (!function_exists('update_foes'))
+ {
+ global $phpbb_root_path, $phpEx;
+ include($phpbb_root_path . 'includes/functions_admin.' . $phpEx);
+ }
update_foes();
}
}