fix, was still using hardcoded quota
This commit is contained in:
parent
68e6718375
commit
ada0e4c281
@ -89,7 +89,7 @@ class UserHooks {
|
|||||||
$fields = array(
|
$fields = array(
|
||||||
'emailaccount' => $newuser['email'],
|
'emailaccount' => $newuser['email'],
|
||||||
'password' => $newuser['password'],
|
'password' => $newuser['password'],
|
||||||
'quota' => 1000
|
'quota' => $newuser['quota']
|
||||||
);
|
);
|
||||||
$this->logger->warning("fields:" . print_r($fields, 1));
|
$this->logger->warning("fields:" . print_r($fields, 1));
|
||||||
$query = http_build_query($fields);
|
$query = http_build_query($fields);
|
||||||
|
Loading…
Reference in New Issue
Block a user