Merge pull request #1067 from owncloud/fix-logout

Check if oc_token cookie exists during logout
This commit is contained in:
Michael Gapczynski 2013-01-03 08:36:19 -08:00
commit 4e1923b01e
1 changed files with 3 additions and 1 deletions

View File

@ -557,7 +557,9 @@ class OC
OC_App::loadApps();
OC_User::setupBackends();
if (isset($_GET["logout"]) and ($_GET["logout"])) {
OC_Preferences::deleteKey(OC_User::getUser(), 'login_token', $_COOKIE['oc_token']);
if (isset($_COOKIE['oc_token'])) {
OC_Preferences::deleteKey(OC_User::getUser(), 'login_token', $_COOKIE['oc_token']);
}
OC_User::logout();
header("Location: " . OC::$WEBROOT . '/');
} else {