From: Jörn Friedrich Dreyer Date: Thu, 11 Aug 2016 07:38:06 +0000 (+0200) Subject: use $userId instead of $user X-Git-Tag: v11.0RC2~827^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=264aaf9ffaf71b2fc8a6bd2f5d5c9bf4a6d403de;p=nextcloud-server.git use $userId instead of $user --- diff --git a/lib/private/legacy/util.php b/lib/private/legacy/util.php index cea7847b3d3..a31d02dc01e 100644 --- a/lib/private/legacy/util.php +++ b/lib/private/legacy/util.php @@ -291,11 +291,11 @@ class OC_Util { /** * Get the quota of a user * - * @param string $user + * @param string $userId * @return int Quota bytes */ - public static function getUserQuota($user) { - $user = \OC::$server->getUserManager()->get($user); + public static function getUserQuota($userId) { + $user = \OC::$server->getUserManager()->get($userId); if (is_null($user)) { return \OCP\Files\FileInfo::SPACE_UNLIMITED; }