Skip to content

Commit

Permalink
Add missing braces to ambiguous statement
Browse files Browse the repository at this point in the history
  • Loading branch information
p.ernst committed May 24, 2018
1 parent dc1c15c commit 2b3839c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data/Link2.php
Expand Up @@ -307,7 +307,7 @@ public function getSide()
{
//First try the relationship
if ($this->relationship->getLHSLink() == $this->name &&
($this->relationship->getLHSModule() == isset($this->focus->module_name) ? $this->focus->module_name : null)
($this->relationship->getLHSModule() == (isset($this->focus->module_name) ? $this->focus->module_name : null))
) {
return REL_LHS;
}
Expand Down

0 comments on commit 2b3839c

Please sign in to comment.