From 9dfc866eddb88974f0bb3665c17b5166c11fa48a Mon Sep 17 00:00:00 2001 From: David Goodwin Date: Sun, 23 Feb 2020 18:59:07 +0000 Subject: [PATCH] composer format --- model/AliasHandler.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/model/AliasHandler.php b/model/AliasHandler.php index 6be5e55f..1fdf2206 100644 --- a/model/AliasHandler.php +++ b/model/AliasHandler.php @@ -137,9 +137,8 @@ class AliasHandler extends PFAHandler { * It also calls parent::init() */ public function init($id) { - $bits = explode('@', $id); - if(sizeof($bits) == 2) { + if (sizeof($bits) == 2) { $local_part = $bits[0]; $domain = $bits[1]; if ($local_part == '*') { # catchall - postfix expects '@domain', not '*@domain'