Private GIT

Skip to content
Snippets Groups Projects
Commit 00b18d5e authored by Alexandru Vilau's avatar Alexandru Vilau
Browse files

Fixes #3363; isset() added to prevent PHP notice in /usr/local/centreon/www/header.php

git-svn-id: http://svn.centreon.com/trunk/centreon@13379 6bcd3966-0018-0410-8128-fd23d134de7e
parent cd3f3192
No related branches found
No related tags found
No related merge requests found
......@@ -108,7 +108,7 @@
$centreon = $_SESSION["centreon"];
$oreon = $centreon;
}
if (!is_object($centreon)) {
if (!isset($centreon) || !is_object($centreon)) {
exit();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment