diff --git a/forms/Form.php b/forms/Form.php index 97538183c..c8a215f08 100644 --- a/forms/Form.php +++ b/forms/Form.php @@ -242,7 +242,9 @@ class Form extends RequestHandler { // Otherwise, try a handler method on the form object } else { - return $this->$funcName($vars, $this, $request); + if($this->hasMethod($funcName)) { + return $this->$funcName($vars, $this, $request); + } } }