mirror of https://github.com/BOINC/boinc.git
Eliminate another undefined index
svn path=/trunk/boinc/; revision=6117
This commit is contained in:
parent
5187814770
commit
614c50bd20
|
@ -6431,4 +6431,5 @@ Bruce 11 May 2005
|
|||
show_host_detail.php
|
||||
team_display.php
|
||||
top_hosts.php
|
||||
logout.php
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@ include_once("../inc/util.inc");
|
|||
session_start();
|
||||
session_destroy();
|
||||
|
||||
if ($_COOKIE['auth']) {
|
||||
if (isset($_COOKIE['auth'])) {
|
||||
setcookie('auth', "", time());
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue