diff options
author | Robin Appelman <icewind1991@gmail.com> | 2011-08-15 21:06:29 +0200 |
---|---|---|
committer | Robin Appelman <icewind1991@gmail.com> | 2011-08-15 21:09:13 +0200 |
commit | 523b0966d22d0fc149ca64afb32995a0eb29a6d3 (patch) | |
tree | 80525dab3705396fe527ec5b5da2e4fe817b2016 /settings/users.php | |
parent | 6173c0fbc262f0d02c45d9cf4e81b020ad839145 (diff) | |
download | nextcloud-server-523b0966d22d0fc149ca64afb32995a0eb29a6d3.tar.gz nextcloud-server-523b0966d22d0fc149ca64afb32995a0eb29a6d3.zip |
add option to set user quota
Diffstat (limited to 'settings/users.php')
-rw-r--r-- | settings/users.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/users.php b/settings/users.php index cd7d04a55e7..8bf64e16fff 100644 --- a/settings/users.php +++ b/settings/users.php @@ -38,7 +38,7 @@ $users = array(); $groups = array(); foreach( OC_User::getUsers() as $i ){ - $users[] = array( "name" => $i, "groups" => join( ", ", OC_Group::getUserGroups( $i ) )); + $users[] = array( "name" => $i, "groups" => join( ", ", OC_Group::getUserGroups( $i ) ),'quota'=>OC_Helper::humanFileSize(OC_Preferences::getValue($i,'files','quota',0))); } foreach( OC_Group::getGroups() as $i ){ |