[Pkg-owncloud-commits] [php-sabredav] 37/40: Typo. Thanks @LukasReschka

David Prévot taffit at moszumanska.debian.org
Sat Sep 5 15:24:10 UTC 2015


This is an automated email from the git hooks/post-receive script.

taffit pushed a commit to tag 3.1.0-alpha2
in repository php-sabredav.

commit c4cce2604ecf7618ba2a9e9f05f0dd949bbccaae
Author: Evert Pot <me at evertpot.com>
Date:   Fri Sep 4 23:46:13 2015 +0200

    Typo. Thanks @LukasReschka
---
 lib/DAV/Auth/Backend/AbstractBasic.php  | 2 +-
 lib/DAV/Auth/Backend/AbstractDigest.php | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/DAV/Auth/Backend/AbstractBasic.php b/lib/DAV/Auth/Backend/AbstractBasic.php
index d2dc7cf..55738a5 100644
--- a/lib/DAV/Auth/Backend/AbstractBasic.php
+++ b/lib/DAV/Auth/Backend/AbstractBasic.php
@@ -100,7 +100,7 @@ abstract class AbstractBasic implements BackendInterface {
 
         $userpass = $auth->getCredentials($request);
         if (!$userpass) {
-            return [false, "No 'Authorization: Basic' header found. Either the client didn't send one, or the server is mis-configured"];
+            return [false, "No 'Authorization: Basic' header found. Either the client didn't send one, or the server is misconfigured"];
         }
         if (!$this->validateUserPass($userpass[0], $userpass[1])) {
             return [false, "Username or password was incorrect"];
diff --git a/lib/DAV/Auth/Backend/AbstractDigest.php b/lib/DAV/Auth/Backend/AbstractDigest.php
index 53f7999..ea1f29b 100644
--- a/lib/DAV/Auth/Backend/AbstractDigest.php
+++ b/lib/DAV/Auth/Backend/AbstractDigest.php
@@ -105,7 +105,7 @@ abstract class AbstractDigest implements BackendInterface {
 
         // No username was given
         if (!$username) {
-            return [false, "No 'Authorization: Digest' header found. Either the client didn't send one, or the server is mis-configured"];
+            return [false, "No 'Authorization: Digest' header found. Either the client didn't send one, or the server is misconfigured"];
         }
 
         $hash = $this->getDigestHash($this->realm, $username);

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/php-sabredav.git



More information about the Pkg-owncloud-commits mailing list