From: josh4trunks Date: Thu, 3 Apr 2014 14:32:48 +0000 (-0700) Subject: Fixed Typo X-Git-Tag: v7.0.0alpha2~337^2~1 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=5b402aa846a5894bc7e290e193ab6160deec4133;p=nextcloud-server.git Fixed Typo --- diff --git a/lib/base.php b/lib/base.php index 819e22d96fe..b06cd3e986f 100644 --- a/lib/base.php +++ b/lib/base.php @@ -745,7 +745,7 @@ class OC { // Ignore HTTP Authentication for 5 more mintues. setcookie('oc_ignore_php_auth_user', $_SERVER['PHP_AUTH_USER'], time() + 300, OC::$WEBROOT.(empty(OC::$WEBROOT) ? '/' : '')); } elseif ($_SERVER['PHP_AUTH_USER'] === self::$session->get('loginname')) { - // Ignore HTTP Aunthentication to allow a different user to log in. + // Ignore HTTP Authentication to allow a different user to log in. setcookie('oc_ignore_php_auth_user', $_SERVER['PHP_AUTH_USER'], 0, OC::$WEBROOT.(empty(OC::$WEBROOT) ? '/' : '')); } }