Skip to content

Commit

Permalink
We implement our own isset(), we need to check the form variable name
Browse files Browse the repository at this point in the history
not the local member name.
  • Loading branch information
mrubinsk committed Feb 24, 2017
1 parent da87bbd commit 5c5a1a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion framework/Util/lib/Horde/Variables.php
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ public function sanitize()
*/
public function exists($varname)
{
return isset($this->$varname);
return isset($varname);
}

/**
Expand Down

0 comments on commit 5c5a1a5

Please sign in to comment.