aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_user.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2006-04-30 14:09:13 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2006-04-30 14:09:13 +0000
commit3536a60e1070f9de74f889a482d9071c559be947 (patch)
tree9d60a15fb1b75f2d9af4407937420723a19b0550 /phpBB/includes/functions_user.php
parente69278b5cdec1f10629ad5f0448ab0f5a5c2e2cb (diff)
downloadforums-3536a60e1070f9de74f889a482d9071c559be947.tar
forums-3536a60e1070f9de74f889a482d9071c559be947.tar.gz
forums-3536a60e1070f9de74f889a482d9071c559be947.tar.bz2
forums-3536a60e1070f9de74f889a482d9071c559be947.tar.xz
forums-3536a60e1070f9de74f889a482d9071c559be947.zip
- changed SUPER_MODERATORS to GLOBAL_MODERATORS
- do not cache moderators having no allowed auth settings - added fsock method to transfer class (this has been made by wGEric for us) git-svn-id: file:///svn/phpbb/trunk@5870 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions_user.php')
-rw-r--r--phpBB/includes/functions_user.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_user.php b/phpBB/includes/functions_user.php
index c404c096fb..6ac71e86db 100644
--- a/phpBB/includes/functions_user.php
+++ b/phpBB/includes/functions_user.php
@@ -1417,7 +1417,7 @@ function group_user_del($group_id, $user_id_ary = false, $username_ary = false,
{
global $db, $auth;
- $group_order = array('ADMINISTRATORS', 'SUPER_MODERATORS', 'REGISTERED_COPPA', 'REGISTERED', 'BOTS', 'GUESTS');
+ $group_order = array('ADMINISTRATORS', 'GLOBAL_MODERATORS', 'REGISTERED_COPPA', 'REGISTERED', 'BOTS', 'GUESTS');
// We need both username and user_id info
user_get_id_name($user_id_ary, $username_ary);