Merge pull request #249 from sminnee/form-head-request-throws-500

BUGFIX: Prevent 500 error when a HEAD request is sent to its action URL.
This commit is contained in:
Ingo Schommer 2012-03-18 15:54:25 -07:00
commit 161a5ca209

View File

@ -192,6 +192,7 @@ class Form extends RequestHandler {
'$Action!' => 'handleAction',
'POST ' => 'httpSubmission',
'GET ' => 'httpSubmission',
'HEAD ' => 'httpSubmission',
);
/**