mirror of
https://github.com/joomla-extensions/jedchecker.git
synced 2024-11-16 10:05:14 +00:00
add support of any attribute (by using '*' as value)
This commit is contained in:
parent
62a887092c
commit
f7353bf312
@ -171,14 +171,19 @@ class JedcheckerRulesXMLManifest extends JEDcheckerRule
|
||||
{
|
||||
// Check attributes
|
||||
$DTDattributes = isset($this->DTDAttrRules[$name]) ? $this->DTDAttrRules[$name] : array();
|
||||
|
||||
if (isset($DTDattributes[0]) && $DTDattributes[0] !== '*')
|
||||
{
|
||||
foreach ($node->attributes() as $attr)
|
||||
{
|
||||
$attr_name = (string)$attr->getName();
|
||||
|
||||
if (!in_array($attr_name, $DTDattributes, true))
|
||||
{
|
||||
$this->warnings[] = JText::sprintf('COM_JEDCHECKER_MANIFEST_UNKNOWN_ATTRIBUTE', $name, $attr_name);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Check children nodes
|
||||
if (!isset($this->DTDNodeRules[$name]))
|
||||
|
Loading…
Reference in New Issue
Block a user