Skip to content

Commit 2e2fdeb

Browse files
bug symfony#52631 [DomCrawler] Revert "bug symfony#52579 UriResolver support path with colons" (lyrixx)
This PR was squashed before being merged into the 5.4 branch. Discussion ---------- [DomCrawler] Revert "bug symfony#52579 UriResolver support path with colons" | Q | A | ------------- | --- | Branch? | 5.4 | Bug fix? | yes | New feature? | no | Deprecations? | no | Issues | fix symfony#52628 | License | MIT Commits ------- 790fb38 [DomCrawler] Revert "bug symfony#52579 UriResolver support path with colons"
2 parents a85ffa9 + 790fb38 commit 2e2fdeb

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/Symfony/Component/DomCrawler/Tests/UriResolverTest.php

+1-3
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,7 @@ public static function provideResolverTests()
8585
['foo', 'http://localhost?bar=1', 'http://localhost/foo'],
8686
['foo', 'http://localhost#bar', 'http://localhost/foo'],
8787

88-
['foo:1', 'http://localhost', 'http://localhost/foo:1'],
89-
['/bar:1', 'http://localhost', 'http://localhost/bar:1'],
90-
['foo/bar:1', 'http://localhost', 'http://localhost/foo/bar:1'],
88+
['http://', 'http://localhost', 'http://'],
9189
];
9290
}
9391
}

src/Symfony/Component/DomCrawler/UriResolver.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public static function resolve(string $uri, ?string $baseUri): string
3333
$uri = trim($uri);
3434

3535
// absolute URL?
36-
if (\is_string(parse_url($uri, \PHP_URL_SCHEME))) {
36+
if (null !== parse_url($uri, \PHP_URL_SCHEME)) {
3737
return $uri;
3838
}
3939

0 commit comments

Comments
 (0)