Skip to content

Commit 3388e20

Browse files
Merge branch '6.4' into 7.2
* 6.4: - CS fixes
2 parents 1bd0c8f + 8e9bb30 commit 3388e20

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

TextSanitizer/UrlSanitizer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ private static function matchAllowedHostParts(array $uriParts, array $trustedPar
136136
{
137137
// Check each chunk of the domain is valid
138138
foreach ($trustedParts as $key => $trustedPart) {
139-
if (!array_key_exists($key, $uriParts) || $uriParts[$key] !== $trustedPart) {
139+
if (!\array_key_exists($key, $uriParts) || $uriParts[$key] !== $trustedPart) {
140140
return false;
141141
}
142142
}

0 commit comments

Comments
 (0)