mirror of
https://github.com/joomla-extensions/jedchecker.git
synced 2024-11-16 10:05:14 +00:00
simplify regex
This commit is contained in:
parent
ab96c035ad
commit
0d2310f75d
@ -231,7 +231,7 @@ class JedcheckerRulesXMLinfo extends JEDcheckerRule
|
||||
$this->report->addInfo($file, implode('<br />', $info));
|
||||
|
||||
// NM3 - Listing name contains “module” or “plugin”
|
||||
if (preg_match('/(?:module|plugin)/i', $extension_name))
|
||||
if (preg_match('/module|plugin/i', $extension_name))
|
||||
{
|
||||
$this->report->addError($file, JText::sprintf('COM_JEDCHECKER_INFO_XML_NAME_MODULE_PLUGIN', $extension_name));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user