From 4682961a11e1bec9773d71406750296ab55da8a6 Mon Sep 17 00:00:00 2001 From: Rotem Liss Date: Mon, 5 May 2008 18:04:48 +0000 Subject: [PATCH] Remove emailconfirmed group from comment. --- includes/User.php | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/includes/User.php b/includes/User.php index 9cbad66065..103b91167d 100644 --- a/includes/User.php +++ b/includes/User.php @@ -2660,7 +2660,6 @@ class User { /** * @param array $groups list of groups * @return array list of permission key names for given groups combined - * @static */ static function getGroupPermissions( $groups ) { global $wgGroupPermissions; @@ -2677,7 +2676,6 @@ class User { /** * @param string $group key name * @return string localized descriptive name for group, if provided - * @static */ static function getGroupName( $group ) { global $wgMessageCache; @@ -2692,7 +2690,6 @@ class User { /** * @param string $group key name * @return string localized descriptive name for member of a group, if provided - * @static */ static function getGroupMember( $group ) { global $wgMessageCache; @@ -2706,11 +2703,10 @@ class User { /** * Return the set of defined explicit groups. - * The *, 'user', 'autoconfirmed' and 'emailconfirmed' - * groups are not included, as they are defined - * automatically, not in the database. + * The implicit groups (by default *, 'user' and 'autoconfirmed') + * are not included, as they are defined automatically, + * not in the database. * @return array - * @static */ static function getAllGroups() { global $wgGroupPermissions; -- 2.20.1