From 16ec876c9e4eb30a6c4d74bab7980163252678cb Mon Sep 17 00:00:00 2001 From: Denis Ryabov Date: Wed, 15 May 2019 22:02:36 +0300 Subject: [PATCH] Fix missed initialization Fixed missing `$this->data['warning']` initialization --- administrator/components/com_jedchecker/models/report.php | 1 + 1 file changed, 1 insertion(+) diff --git a/administrator/components/com_jedchecker/models/report.php b/administrator/components/com_jedchecker/models/report.php index 31e071a..55acf95 100644 --- a/administrator/components/com_jedchecker/models/report.php +++ b/administrator/components/com_jedchecker/models/report.php @@ -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;