summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/user.php18
1 files changed, 9 insertions, 9 deletions
diff --git a/lib/user.php b/lib/user.php
index a57ee5b13ca..503ac3f7493 100644
--- a/lib/user.php
+++ b/lib/user.php
@@ -489,10 +489,10 @@ class OC_User {
/**
* disables a user
*
- * @param string $userid the user to disable
+ * @param string $uid the user to disable
*/
- public static function disableUser($userid) {
- $user = self::getManager()->get($userid);
+ public static function disableUser($uid) {
+ $user = self::getManager()->get($uid);
if ($user) {
$user->setEnabled(false);
}
@@ -501,10 +501,10 @@ class OC_User {
/**
* enable a user
*
- * @param string $userid
+ * @param string $uid
*/
- public static function enableUser($userid) {
- $user = self::getManager()->get($userid);
+ public static function enableUser($uid) {
+ $user = self::getManager()->get($uid);
if ($user) {
$user->setEnabled(true);
}
@@ -513,11 +513,11 @@ class OC_User {
/**
* checks if a user is enabled
*
- * @param string $userid
+ * @param string $uid
* @return bool
*/
- public static function isEnabled($userid) {
- $user = self::getManager()->get($userid);
+ public static function isEnabled($uid) {
+ $user = self::getManager()->get($uid);
if ($user) {
return $user->isEnabled();
} else {