BUGFIX: Prevent 500 error when a HEAD request is sent to its action URL.

This commit is contained in:
Sam Minnee 2012-03-19 09:26:20 +13:00
parent e443ec5c9c
commit 067204d003

View File

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