1
0
Fork 0
forked from blallo/rss-bridge

Merge pull request #199 from Ginko-Aloe/patch-1

urlencode keyword parameter
This commit is contained in:
Mitsu 2016-01-26 21:17:47 +01:00
commit 787de0360c

View file

@ -134,7 +134,7 @@ class LeBonCoinBridge extends BridgeAbstract{
public function collectData(array $param){
$html = '';
$link = 'http://www.leboncoin.fr/annonces/offres/' . $param['r'] . '/?f=a&th=1&q=' . $param['k'];
$link = 'http://www.leboncoin.fr/annonces/offres/' . $param['r'] . '/?f=a&th=1&q=' . urlencode($param['k']);
$html = file_get_html($link) or $this->returnError('Could not request LeBonCoin.', 404);
$list = $html->find('.list-lbc', 0);