From a0a80e74c2b7ba32cd6e8a57dcfba6bcadab3053 Mon Sep 17 00:00:00 2001 From: Georg Ehrke Date: Sat, 21 Apr 2012 23:23:46 +0200 Subject: remove old sabredav files --- 3rdparty/Sabre/DAV/Auth/Backend/Apache.php | 60 ------------------------------ 1 file changed, 60 deletions(-) delete mode 100644 3rdparty/Sabre/DAV/Auth/Backend/Apache.php (limited to '3rdparty/Sabre/DAV/Auth/Backend/Apache.php') diff --git a/3rdparty/Sabre/DAV/Auth/Backend/Apache.php b/3rdparty/Sabre/DAV/Auth/Backend/Apache.php deleted file mode 100644 index 6bcd76bdcb0..00000000000 --- a/3rdparty/Sabre/DAV/Auth/Backend/Apache.php +++ /dev/null @@ -1,60 +0,0 @@ -httpRequest->getRawServerValue('REMOTE_USER'); - if (is_null($remoteUser)) { - throw new Sabre_DAV_Exception('We did not receive the $_SERVER[REMOTE_USER] property. This means that apache might have been misconfigured'); - } - - $this->remoteUser = $remoteUser; - return true; - - } - - /** - * Returns information about the currently logged in user. - * - * If nobody is currently logged in, this method should return null. - * - * @return array|null - */ - public function getCurrentUser() { - - return $this->remoteUser; - - } - -} - -- cgit v1.2.3