Eliminate another undefined index

svn path=/trunk/boinc/; revision=6117
This commit is contained in:
Bruce Allen 2005-05-11 10:22:07 +00:00
parent 5187814770
commit 614c50bd20
2 changed files with 2 additions and 1 deletions

View File

@ -6431,4 +6431,5 @@ Bruce 11 May 2005
show_host_detail.php
team_display.php
top_hosts.php
logout.php

View File

@ -6,7 +6,7 @@ include_once("../inc/util.inc");
session_start();
session_destroy();
if ($_COOKIE['auth']) {
if (isset($_COOKIE['auth'])) {
setcookie('auth', "", time());
}