mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 12:05:37 +00:00
BUGFIX Fixed "method is not a string" error in Form::httpSubmission()
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.3@80380 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
bfce550b30
commit
f33ee9a1c3
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user