diff options
author | Michael Göhler <somebody.here@gmx.de> | 2012-10-12 11:12:31 +0200 |
---|---|---|
committer | Michael Göhler <somebody.here@gmx.de> | 2012-10-14 22:36:25 +0200 |
commit | a6c4046f48752b957d591a9c9574caf6f18e6d40 (patch) | |
tree | 5fece7a44bb5e0c9ea4ba89201284b3459a47b1d /lib/base.php | |
parent | d8fe6fbb400e80e51655b78883925efe6b3af937 (diff) | |
download | nextcloud-server-a6c4046f48752b957d591a9c9574caf6f18e6d40.tar.gz nextcloud-server-a6c4046f48752b957d591a9c9574caf6f18e6d40.zip |
fixed typo and redundant method call
Diffstat (limited to 'lib/base.php')
-rw-r--r-- | lib/base.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/base.php b/lib/base.php index b030b38b5ee..bf2c2199ff5 100644 --- a/lib/base.php +++ b/lib/base.php @@ -555,9 +555,8 @@ class OC{ // if you reach this point you have changed your password // or you are an attacker // we can not delete tokens here because users may reach - // this point multible times after a password change + // this point multiple times after a password change OC_Log::write('core', 'Authentication cookie rejected for user '.$_COOKIE['oc_username'], OC_Log::WARN); - OC_User::unsetMagicInCookie(); } OC_User::unsetMagicInCookie(); return true; |