From a71a0d89d7d6d4d9a84a9c0dc262e6f0fca176d2 Mon Sep 17 00:00:00 2001 From: Synchro Date: Thu, 5 Jun 2014 02:24:10 +0200 Subject: [PATCH] Cleanup --- class.smtp.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/class.smtp.php b/class.smtp.php index e06dc76f7..e56d1c2de 100644 --- a/class.smtp.php +++ b/class.smtp.php @@ -123,7 +123,7 @@ class SMTP * The socket for the server connection. * @type resource */ - protected $smtp_conn = null; + protected $smtp_conn; /** * Error message, if any, for the last call. @@ -366,7 +366,6 @@ public function authenticate( ); // send encoded username return $this->sendCommand('Username', base64_encode($msg3), 235); - break; case 'CRAM-MD5': // Start authentication if (!$this->sendCommand('AUTH CRAM-MD5', 'AUTH CRAM-MD5', 334)) { @@ -380,7 +379,6 @@ public function authenticate( // send encoded credentials return $this->sendCommand('Username', base64_encode($response), 235); - break; } return true; }