fix a few more session-related warnings
This commit is contained in:
parent
119a4226d8
commit
e6624cf631
|
@ -46,7 +46,7 @@
|
|||
UserHelper::authenticate( "admin", null);
|
||||
}
|
||||
|
||||
if ($_SESSION["uid"]) {
|
||||
if (!empty($_SESSION["uid"])) {
|
||||
if (!validate_session()) {
|
||||
header("Content-Type: text/json");
|
||||
print error_json(6);
|
||||
|
|
|
@ -2,6 +2,6 @@
|
|||
class Handler_Protected extends Handler {
|
||||
|
||||
function before($method) {
|
||||
return parent::before($method) && $_SESSION['uid'];
|
||||
return parent::before($method) && !empty($_SESSION['uid']);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue