From: Frank Karlitschek Date: Tue, 27 Sep 2011 13:31:30 +0000 (+0200) Subject: remove warning by check cookie before accessing it. X-Git-Tag: v3.0~137 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=bf3248bee9d3903cc40b4271215a3e537b68ac34;p=nextcloud-server.git remove warning by check cookie before accessing it. --- diff --git a/index.php b/index.php index 63ffba135ae..2ac3f6df7bb 100644 --- a/index.php +++ b/index.php @@ -57,7 +57,7 @@ elseif(isset($_COOKIE["oc_remember_login"]) && $_COOKIE["oc_remember_login"]) { OC_App::loadApps(); if(defined("DEBUG") && DEBUG) {error_log("Trying to login from cookie");} // confirm credentials in cookie - if(OC_User::userExists($_COOKIE['oc_username']) && + if(isset($_COOKIE['oc_token']) && OC_User::userExists($_COOKIE['oc_username']) && OC_Preferences::getValue($_COOKIE['oc_username'], "login", "token") == $_COOKIE['oc_token']) { OC_User::setUserId($_COOKIE['oc_username']); OC_Util::redirectToDefaultPage();