From 6408123330a28041344cccf3133981196e62a9a6 Mon Sep 17 00:00:00 2001 From: SebLaus <97241865+SebLaus@users.noreply.github.com> Date: Fri, 19 Jan 2024 03:59:47 +0100 Subject: [PATCH] [IdealoBridge] added Header with user-agent and fixed typo (#3897) * Added header with useragent * copy paste error from local test environment * Fixed missing space in New before * fixed missing space after comma in argument list --- bridges/IdealoBridge.php | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/bridges/IdealoBridge.php b/bridges/IdealoBridge.php index 89c5f87d..cef2b812 100644 --- a/bridges/IdealoBridge.php +++ b/bridges/IdealoBridge.php @@ -42,8 +42,13 @@ class IdealoBridge extends BridgeAbstract public function collectData() { + // Needs header with user-agent to function properly. + $header = [ + 'user-agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2.1 Safari/605.1.15' + ]; + $link = $this->getInput('Link'); - $html = getSimpleHTMLDOM($link); + $html = getSimpleHTMLDOM($link, $header); // Get Productname $titleobj = $html->find('.oopStage-title', 0); @@ -80,7 +85,7 @@ class IdealoBridge extends BridgeAbstract // Generate Content if ($PriceNew > 1) { $content = "

Price New:
$PriceNew

"; - $content .= "

Price Newbefore:
$OldPriceNew

"; + $content .= "

Price New before:
$OldPriceNew

"; } if ($this->getInput('MaxPriceNew') != '') {