Missing reference to current object.

Fixes #5.
This commit is contained in:
Miguel Nogueira 2018-06-08 15:20:29 +00:00
parent 0ea8c6fb72
commit 65a3c7bf1b
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ class Application
$this->database['hostname'] = $cConfigArray['core']['database']['hostname'];
$this->database['dbname'] = $cConfigArray['core']['database']['dbname'];
$this->db = instDB();
$this->db = $this->instDB();
}