Avoid undefined class variables

This commit is contained in:
Michael 2017-10-11 14:52:08 +00:00
parent a29b7e7153
commit 225eea2ca6
10 changed files with 25 additions and 9 deletions

View file

@ -23,7 +23,9 @@ function poller_run($argv, $argc){
$poller_up_start = microtime(true);
$a = new App(dirname(__DIR__));
if (empty($a)) {
$a = new App(dirname(__DIR__));
}
require_once ".htconfig.php";
require_once "include/dba.php";