see: https://github.com/postfixadmin/postfixadmin/issues/347 - really patch MailboxHandler::storemore() ...

postfixadmin_3.2
David Goodwin 6 years ago
parent f7708520b3
commit d25632cc6e

@ -217,7 +217,7 @@ class MailboxHandler extends PFAHandler {
protected function beforestore() {
if (isset($this->values['quota']) && $this->values['quota'] != -1) {
if (isset($this->values['quota']) && is_numeric($this->values['quota']) && $this->values['quota'] != -1) {
$multiplier = Config::read('quota_multiplier');
if ($multiplier == 0 || !is_numeric($multiplier)) { // or empty string, or null, or false...
$multiplier = 1;

Loading…
Cancel
Save