[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,10 +270,11 @@ abstract class BridgeAbstract implements BridgeInterface {
|
||||||
// Populate BridgeAbstract::parameters with sanitized data
|
// Populate BridgeAbstract::parameters with sanitized data
|
||||||
foreach($param as $name=>$value){
|
foreach($param as $name=>$value){
|
||||||
foreach($this->parameters as $context=>$set){
|
foreach($this->parameters as $context=>$set){
|
||||||
if(isset($this->parameters[$context][$name]))
|
if(isset($this->parameters[$context][$name])){
|
||||||
$this->parameters[$context][$name]['value']=$value;
|
$this->parameters[$context][$name]['value']=$value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Guess the paramter context from input data
|
// Guess the paramter context from input data
|
||||||
$queriedContext=$this->getQueriedContext();
|
$queriedContext=$this->getQueriedContext();
|
||||||
|
|
Loading…
Reference in a new issue