33
2
mirror of https://github.com/joomla-extensions/jedchecker.git synced 2024-12-31 21:51:46 +00:00

Fix missed initialization

Fixed missing `$this->data['warning']` initialization
This commit is contained in:
Denis Ryabov 2019-05-15 22:02:36 +03:00 committed by GitHub
parent 2ef0233058
commit 16ec876c9e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -67,6 +67,7 @@ class JEDcheckerReport extends JObject
$this->data['errors'] = array();
$this->data['compat'] = array();
$this->data['info'] = array();
$this->data['warning'] = array();
$this->data['count'] = new stdClass;
$this->data['count']->total = 0;