0
0
mirror of https://github.com/PHPMailer/PHPMailer.git synced 2024-09-20 10:02:14 +02:00

Cleaner check for no server caps

This commit is contained in:
Synchro 2015-03-06 18:57:22 +01:00
parent d89d3b03b0
commit 27cc5528ad

View File

@ -725,7 +725,7 @@ class SMTP
continue;
}
$fields = explode(' ', $s);
if ($fields) {
if (!empty($fields)) {
if (!$n) {
$name = $type;
$fields = $fields[0];