Merge pull request #2072 from owncloud/fix_typo

fix wrong var name
This commit is contained in:
Frank Karlitschek 2013-03-04 04:19:24 -08:00
commit d4ea381040
1 changed files with 1 additions and 1 deletions

View File

@ -351,7 +351,7 @@ class Storage {
$versions_fileview = new \OC\Files\View('/'.$uid.'/files_versions');
// get available disk space for user
$quota = \OC_Preferences::getValue($user, 'files', 'quota');
$quota = \OC_Preferences::getValue($uid, 'files', 'quota');
if ( $quota === null || $quota === 'default') {
$quota = \OC_Appconfig::getValue('files', 'default_quota');
}