0
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2024-09-20 03:36:20 +02:00

fix php8 moaning about string vs int

This commit is contained in:
David Goodwin 2021-01-18 20:46:11 +00:00
parent d4ea720095
commit 23cec95153

View File

@ -493,6 +493,8 @@ class MailboxHandler extends PFAHandler {
return true; # enforcing quotas is disabled - just allow it
}
$quota = (int) $quota;
list(/*NULL*/, $domain) = explode('@', $this->id);
$limit = get_domain_properties($domain);