From 8c694d615789f8bfa393f702658437f3bba5cdf1 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Tue, 11 Feb 2020 11:47:17 +0100 Subject: [PATCH] [DomCrawler] fix leftover --- src/Symfony/Component/DomCrawler/AbstractUriElement.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/DomCrawler/AbstractUriElement.php b/src/Symfony/Component/DomCrawler/AbstractUriElement.php index 4e31b38af6..2afc822c57 100644 --- a/src/Symfony/Component/DomCrawler/AbstractUriElement.php +++ b/src/Symfony/Component/DomCrawler/AbstractUriElement.php @@ -80,7 +80,7 @@ abstract class AbstractUriElement */ public function getUri() { - return UriExpander::expand($this->getRawUri(), $this->currentUri); + return UriResolver::resolve($this->getRawUri(), $this->currentUri); } /**