Skip to content

Commit

Permalink
[core] fix missing curly brackets
Browse files Browse the repository at this point in the history
Signed-off-by: Pierre Mazière <[email protected]>
  • Loading branch information
Pierre Mazière committed Aug 28, 2016
1 parent ea46d53 commit d1715f6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/Bridge.php
Original file line number Diff line number Diff line change
Expand Up @@ -270,8 +270,9 @@ public function setDatas(array $param){
// 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;
}
}
}

Expand Down

0 comments on commit d1715f6

Please sign in to comment.