From ada0e4c281cf629254e67cd4fbf1d10571c2f3ed Mon Sep 17 00:00:00 2001 From: Alexander Vassilevski Date: Sat, 23 Jan 2021 23:47:56 -0800 Subject: [PATCH] fix, was still using hardcoded quota --- lib/Hooks/UserHooks.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Hooks/UserHooks.php b/lib/Hooks/UserHooks.php index f5879da..fbd3b25 100644 --- a/lib/Hooks/UserHooks.php +++ b/lib/Hooks/UserHooks.php @@ -89,7 +89,7 @@ class UserHooks { $fields = array( 'emailaccount' => $newuser['email'], 'password' => $newuser['password'], - 'quota' => 1000 + 'quota' => $newuser['quota'] ); $this->logger->warning("fields:" . print_r($fields, 1)); $query = http_build_query($fields);