diff --git a/lib/SwiftMailer/classes/Swift/Transport/AbstractSmtpTransport.php b/lib/SwiftMailer/classes/Swift/Transport/AbstractSmtpTransport.php index f4d9967..32be708 100644 --- a/lib/SwiftMailer/classes/Swift/Transport/AbstractSmtpTransport.php +++ b/lib/SwiftMailer/classes/Swift/Transport/AbstractSmtpTransport.php @@ -396,7 +396,7 @@ abstract class Swift_Transport_AbstractSmtpTransport implements Swift_Transport do { $line = $this->_buffer->readLine($seq); $response .= $line; - } while (null !== $line && false !== $line && ' ' != $line{3}); + } while (null !== $line && false !== $line && ' ' != $line[3]); } catch (Swift_TransportException $e) { $this->_throwException($e); } catch (Swift_IoException $e) {