Skip to content
Snippets Groups Projects
Commit 56ef2fee authored by Mike Feranda's avatar Mike Feranda Committed by Mike Feranda
Browse files

Issue #3171890 by mferanda: Complimentary suppression - other not suppressing...

Issue #3171890 by mferanda: Complimentary suppression - other not suppressing if item is remotely supressed (continue rules)
parent 5e7de2c6
No related branches found
No related tags found
No related merge requests found
...@@ -179,9 +179,11 @@ class HtmlFormatterType extends FormatterBase { ...@@ -179,9 +179,11 @@ class HtmlFormatterType extends FormatterBase {
&& (isset($rowSettings[$i][$field]['valueSuppression']['role']) && !empty(array_intersect($rowSettings[$i][$field]['valueSuppression']['role'], $roles)) && (isset($rowSettings[$i][$field]['valueSuppression']['role']) && !empty(array_intersect($rowSettings[$i][$field]['valueSuppression']['role'], $roles))
|| !isset($rowSettings[$i][$field]['valueSuppression']['role'])) || !isset($rowSettings[$i][$field]['valueSuppression']['role']))
); );
// if it is marked to suppress, then process it. // if it is marked to suppress, then process it.
if (isset($suppCell[$i]) && in_array($field, $suppCell[$i])) { // Also check the higher level rowSuppression variable set at end (rerun)
if ((isset($suppCell[$i]) && in_array($field, $suppCell[$i]))
|| (isset($this->rowSuppression[$i]) && in_array($field, $this->rowSuppression[$i]))) {
$suppCellProcess = true; $suppCellProcess = true;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment