Merge pull request #100 from yanobs/master

Check that $_SESSION["uid"] is defined before checking value
This commit is contained in:
Andrew Dolgov 2013-03-29 08:17:23 -07:00
commit 3b5def6e80
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@
if (isset($_COOKIE[$session_name])) {
@session_start();
if (!$_SESSION["uid"]) {
if (!isset($_SESSION["uid"] || !$_SESSION["uid"]) {
session_destroy();
setcookie(session_name(), '', time()-42000, '/');
}