mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
fix warning if no username is set in the cookie
This commit is contained in:
parent
828a26c69e
commit
9d1c5c855b
1 changed files with 10 additions and 2 deletions
12
index.php
12
index.php
|
|
@ -69,14 +69,22 @@ elseif(isset($_POST["user"])) {
|
|||
exit();
|
||||
}
|
||||
else {
|
||||
OC_TEMPLATE::printGuestPage("", "login", array("error" => true, "username" => $_COOKIE["username"]));
|
||||
if(isset($_COOKIE["username"])){
|
||||
OC_TEMPLATE::printGuestPage("", "login", array("error" => true, "username" => $_COOKIE["username"]));
|
||||
}else{
|
||||
OC_TEMPLATE::printGuestPage("", "login", array("error" => true));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// For all others cases, we display the guest page :
|
||||
else {
|
||||
OC_APP::loadApps();
|
||||
OC_TEMPLATE::printGuestPage("", "login", array("error" => false, "username" => $_COOKIE["username"]));
|
||||
if(isset($_COOKIE["username"])){
|
||||
OC_TEMPLATE::printGuestPage("", "login", array("error" => false, "username" => $_COOKIE["username"]));
|
||||
}else{
|
||||
OC_TEMPLATE::printGuestPage("", "login", array("error" => false));
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
Loading…
Reference in a new issue