This reduces the number of false positives by further restricting the pNotUsedAsHeader test.
see: https://git.drupalcode.org/project/quail_api/blob/7.x-1.x/miscellaneous/quail-reduce-pNotUsedAsHeader-false_positives.patch
($p->nodeValue == $p->firstChild->nodeValue) &&
property_exists($p->firstChild, 'tagName') &&
in_array($p->firstChild->tagName, $this->head_tags)) {
- $this->addReport($p);
+ $matches = preg_match("/\.\W*/", $p->nodeValue);
+ if ($matches == 0){
+ $this->addReport($p);
+ }
}
else {
$style = $this->css->getStyle($p);
if(isset($style['font-weight']) && $style['font-weight'] == 'bold') {
- $this->addReport($p);
+ $matches = preg_match("/\.\W*/", $p->nodeValue);
+ if ($matches == 0){
+ $this->addReport($p);
+ }
}
}
}