mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-08-13 12:04:09 +02:00
[bridges] Fix conditional checks on getInput
isset($this->getInput('')) does not work
This commit is contained in:
@@ -52,7 +52,7 @@ class KununuBridge extends HttpCachingBridgeAbstract {
|
||||
$this->returnClientError('You must specify a company (&company=...)!');
|
||||
|
||||
$full = false; // By default we'll load only short article
|
||||
if(isset($this->getInput('full')))
|
||||
if($this->getInput('full'))
|
||||
$full = strtolower(trim($this->getInput('full')));
|
||||
|
||||
// Get reviews section name (depends on site)
|
||||
|
Reference in New Issue
Block a user