From f02230050eeab6ece6f4282fd475411ea1f5b45f Mon Sep 17 00:00:00 2001 From: Benny Baumann Date: Wed, 3 Jul 2013 00:46:20 +0200 Subject: bug 1186: Missing argument is missing. --- includes/general.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/general.php b/includes/general.php index abc8611..9ffca9d 100644 --- a/includes/general.php +++ b/includes/general.php @@ -550,7 +550,7 @@ list($pri, $mxhosts[]) = explode(" ", trim($row), 2); } $mxhosts[] = $domain; - array_walk($mxhosts, function(&$mx) { $mx = trim($mx); } ); + array_walk($mxhosts, function(&$mx) { $mx = trim($mx, '.'); } ); foreach($mxhosts as $key => $domain) { -- cgit v1.2.1