diff options
-rw-r--r-- | includes/general.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/general.php b/includes/general.php index 9ffca9d..a4edd2b 100644 --- a/includes/general.php +++ b/includes/general.php @@ -544,7 +544,7 @@ $list = explode("\n", $line); foreach($list as $row) { - if(!strstr(" ", $row)) { + if(!strstr($row, " ")) { continue; } list($pri, $mxhosts[]) = explode(" ", trim($row), 2); |