forked from blallo/rss-bridge
[core] fix missing curly brackets
Signed-off-by: Pierre Mazière <pierre.maziere@gmx.com>
This commit is contained in:
parent
ea46d532dc
commit
d1715f6efc
1 changed files with 2 additions and 1 deletions
|
@ -270,8 +270,9 @@ abstract class BridgeAbstract implements BridgeInterface {
|
|||
// Populate BridgeAbstract::parameters with sanitized data
|
||||
foreach($param as $name=>$value){
|
||||
foreach($this->parameters as $context=>$set){
|
||||
if(isset($this->parameters[$context][$name]))
|
||||
if(isset($this->parameters[$context][$name])){
|
||||
$this->parameters[$context][$name]['value']=$value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue