summaryrefslogtreecommitdiffstats
path: root/settings/users.php
diff options
context:
space:
mode:
authorBjörn Schießle <schiessle@owncloud.com>2013-01-29 21:04:11 +0100
committerBjörn Schießle <schiessle@owncloud.com>2013-01-29 21:04:11 +0100
commit8d0b67e17aa30fdeaba16754f93146936aac9e2c (patch)
treed23b8c4680f4254a2c17dbac8d055680dd50c15b /settings/users.php
parentebc3d1b2d7dadb543e132990434face1e3ff0fc9 (diff)
downloadnextcloud-server-8d0b67e17aa30fdeaba16754f93146936aac9e2c.tar.gz
nextcloud-server-8d0b67e17aa30fdeaba16754f93146936aac9e2c.zip
fix typo in variable name
Diffstat (limited to 'settings/users.php')
-rw-r--r--settings/users.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/users.php b/settings/users.php
index df7cf8ac1d5..ab7a7aed734 100644
--- a/settings/users.php
+++ b/settings/users.php
@@ -43,7 +43,7 @@ $defaultQuotaIsUserDefined=array_search($defaultQuota, $quotaPreset)===false &&
// load users and quota
foreach($accessibleusers as $uid => $displayName) {
- $quota=OC_Preferences::getValue($i, 'files', 'quota', 'default');
+ $quota=OC_Preferences::getValue($uid, 'files', 'quota', 'default');
$isQuotaUserDefined=array_search($quota, $quotaPreset)===false && array_search($quota, array('none', 'default'))===false;
$name = $displayName;