mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 17:19:37 +00:00
Fix multiple warnings.
Fix JSON request string in case of empty location
This commit is contained in:
parent
6da8daf1a3
commit
622802e5d4
@ -362,7 +362,7 @@ class LeBonCoinBridge extends BridgeAbstract {
|
|||||||
);
|
);
|
||||||
|
|
||||||
$opts = array(
|
$opts = array(
|
||||||
CURL_CUSTOMREQUEST => 'POST',
|
CURLOPT_CUSTOMREQUEST => 'POST',
|
||||||
CURLOPT_POSTFIELDS => $data
|
CURLOPT_POSTFIELDS => $data
|
||||||
|
|
||||||
);
|
);
|
||||||
@ -424,7 +424,7 @@ class LeBonCoinBridge extends BridgeAbstract {
|
|||||||
|
|
||||||
$requestJson = new StdClass();
|
$requestJson = new StdClass();
|
||||||
$requestJson->owner_type = $this->getInput('owner');
|
$requestJson->owner_type = $this->getInput('owner');
|
||||||
$requestJson->filters->location = array();
|
$requestJson->filters = new StdClass();
|
||||||
|
|
||||||
$requestJson->filters->keywords = array(
|
$requestJson->filters->keywords = array(
|
||||||
'text' => $this->getInput('keywords')
|
'text' => $this->getInput('keywords')
|
||||||
|
Loading…
Reference in New Issue
Block a user