1
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2025-07-29 22:41:11 +03:00
This commit is contained in:
David Goodwin
2020-03-18 14:36:53 +00:00
parent d3295a59bb
commit 338fb8c564

View File

@ -206,7 +206,7 @@ class MailboxHandler extends PFAHandler {
protected function read_from_db_postprocess($db_result) {
foreach ($db_result as $key => $row) {
if (isset($row['quota']) && !empty($row['quota'])) { # quota could be disabled in $struct
if (isset($row['quota']) && is_numeric($row['quota']) && $row['quota'] > -1) { # quota could be disabled in $struct
$db_result[$key]['quotabytes'] = $row['quota'];
$db_result[$key]['quota'] = divide_quota($row['quota']); # convert quota to MB
} else {