From a3b69968148d5bbe3b5224e750ed42941554dfd2 Mon Sep 17 00:00:00 2001 From: Ralf Lang Date: Tue, 14 Apr 2026 06:26:50 +0200 Subject: [PATCH] fix: Missing assignment in md5 Closes #3 --- src/Client.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Client.php b/src/Client.php index 4653aa8..23d6775 100644 --- a/src/Client.php +++ b/src/Client.php @@ -708,7 +708,7 @@ protected function _authDigestMD5($user, $pass, $euser) } $this->_sendStringResponse(base64_encode($response)); - $this->_doCmd('', true); + $result = $this->_doCmd('', true); if (\Horde_String::upper(substr($result, 0, 2)) == 'OK') { return; }