mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-08-09 18:16:36 +02:00
[bridges] Fix conditional checks on getInput
isset($this->getInput('')) does not work
This commit is contained in:
@@ -49,7 +49,7 @@ class ThePirateBayBridge extends BridgeAbstract{
|
||||
}
|
||||
|
||||
|
||||
if (!isset($this->getInput('q')))
|
||||
if (!$this->getInput('q'))
|
||||
$this->returnClientError('You must specify keywords (?q=...)');
|
||||
|
||||
$keywordsList = explode(";",$this->getInput('q'));
|
||||
|
Reference in New Issue
Block a user