33
2
mirror of https://github.com/joomla-extensions/jedchecker.git synced 2024-11-27 15:26:36 +00:00

Upgrade error_reporting(0) from warning to error

This commit is contained in:
Jaz Parkyn 2016-05-06 23:18:27 +01:00
parent b89c4ba620
commit 0a3b040cfb

View File

@ -61,7 +61,7 @@ class JedcheckerRulesErrorreporting extends JEDcheckerRule
if ($this->find($file)) if ($this->find($file))
{ {
// Add as error to the report if it was not found // Add as error to the report if it was not found
$this->report->addWarning($file, JText::_('COM_JEDCHECKER_ERROR_ERRORREPORTING')); $this->report->addError($file, JText::_('COM_JEDCHECKER_ERROR_ERRORREPORTING'));
} }
} }
} }