From a33088ca99e0f948fbadc6a83ecbfe9efc1da174 Mon Sep 17 00:00:00 2001 From: Eugene Molotov Date: Mon, 27 Jul 2020 11:44:07 +0500 Subject: [PATCH] [GoogleSearch] Correct parsing uri of search result (#1601) --- bridges/GoogleSearchBridge.php | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/bridges/GoogleSearchBridge.php b/bridges/GoogleSearchBridge.php index e02aaeba..650696e2 100644 --- a/bridges/GoogleSearchBridge.php +++ b/bridges/GoogleSearchBridge.php @@ -35,14 +35,8 @@ class GoogleSearchBridge extends BridgeAbstract { $item = array(); - // Extract direct URL from google href (eg. /url?q=...) $t = $element->find('a[href]', 0)->href; - $item['uri'] = '' . $t; - parse_str(parse_url($t, PHP_URL_QUERY), $parameters); - if(isset($parameters['q'])) { - $item['uri'] = $parameters['q']; - } - + $item['uri'] = htmlspecialchars_decode($t); $item['title'] = $element->find('h3', 0)->plaintext; $item['content'] = $element->find('span[class=st]', 0)->plaintext;