Skip to content

Commit

Permalink
[TASK] CGL fix
Browse files Browse the repository at this point in the history
  • Loading branch information
derhansen committed Sep 22, 2023
1 parent fa43062 commit d35cfbe
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Classes/Utility/Tests/LinkUtility.php
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,10 @@ public static function getRedundantLinkNames(array $elements): array
) {
$linkNames[] = $element->textContent;
} elseif (in_array(
$element->textContent,
$linkNames,
true
) && !isset($redundantLinks[$element->textContent])) {
$element->textContent,
$linkNames,
true
) && !isset($redundantLinks[$element->textContent])) {
$redundantLinks[$element->textContent] = $element;
}
}
Expand Down

0 comments on commit d35cfbe

Please sign in to comment.