|
|
|
@ -5,7 +5,7 @@ require_once('../../lib/base.php'); |
|
|
|
|
|
|
|
|
|
OC_JSON::checkAdminUser(); |
|
|
|
|
|
|
|
|
|
$username = $_POST["username"]; |
|
|
|
|
$username = isset($_POST["username"])?$_POST["username"]:''; |
|
|
|
|
|
|
|
|
|
//make sure the quota is in the expected format |
|
|
|
|
$quota=$_POST["quota"]; |
|
|
|
@ -19,7 +19,14 @@ if($quota!='none' and $quota!='default'){ |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// Return Success story |
|
|
|
|
OC_Preferences::setValue($username,'files','quota',$quota); |
|
|
|
|
if($username){ |
|
|
|
|
OC_Preferences::setValue($username,'files','quota',$quota); |
|
|
|
|
}else{//set the default quota when no username is specified |
|
|
|
|
if($quota=='default'){//'default' as default quota makes no sense |
|
|
|
|
$quota='none'; |
|
|
|
|
} |
|
|
|
|
OC_Appconfig::setValue('files','default_quota',$quota); |
|
|
|
|
} |
|
|
|
|
OC_JSON::success(array("data" => array( "username" => $username ,'quota'=>$quota))); |
|
|
|
|
|
|
|
|
|
?> |
|
|
|
|