diff options
author | josh4trunks <joshruehlig@gmail.com> | 2014-04-03 07:32:48 -0700 |
---|---|---|
committer | josh4trunks <joshruehlig@gmail.com> | 2014-04-03 22:12:57 -0700 |
commit | 5b402aa846a5894bc7e290e193ab6160deec4133 (patch) | |
tree | 08683441a0647c0a8c9bf89f395912fa5baa7eec | |
parent | a2661447504cbbf00d9f0b32159fa7311dcbc479 (diff) | |
download | nextcloud-server-5b402aa846a5894bc7e290e193ab6160deec4133.tar.gz nextcloud-server-5b402aa846a5894bc7e290e193ab6160deec4133.zip |
Fixed Typo
-rw-r--r-- | lib/base.php | 2 |
1 files changed, 1 insertions, 1 deletions
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) ? '/' : '')); } } |