Skip to content

Commit

Permalink
Revert "We implement our own isset(), we need to check the form varia…
Browse files Browse the repository at this point in the history
…ble name"

This always evaluates to true.

This reverts commit 5c5a1a5.
  • Loading branch information
yunosh committed Feb 25, 2017
1 parent c3d58df commit c6224a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion framework/Util/lib/Horde/Variables.php
Expand Up @@ -105,7 +105,7 @@ public function sanitize()
*/
public function exists($varname)
{
return isset($varname);
return isset($this->$varname);
}

/**
Expand Down

0 comments on commit c6224a7

Please sign in to comment.