From 7641fb5266b98c79b5ce85ce989c962f608ebeb6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pierre=20Mazi=C3=A8re?= Date: Sun, 21 Aug 2016 19:25:23 +0200 Subject: [PATCH] [LinkedInCompany] fix missing quotes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Pierre Mazière --- bridges/LinkedInCompany.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bridges/LinkedInCompany.php b/bridges/LinkedInCompany.php index 79bc43f1..193d2440 100644 --- a/bridges/LinkedInCompany.php +++ b/bridges/LinkedInCompany.php @@ -19,7 +19,7 @@ class LinkedInCompany extends BridgeAbstract{ public function collectData(array $param){ $html = ''; - $link = 'https://www.linkedin.com/company/'.$param[c]; + $link = 'https://www.linkedin.com/company/'.$param['c']; $html = $this->getSimpleHTMLDOM($link) or $this->returnServerError('Could not request LinkedIn.');