summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorSteven Wittens <steven@10.no-reply.drupal.org>2005-10-19 09:28:21 +0000
committerSteven Wittens <steven@10.no-reply.drupal.org>2005-10-19 09:28:21 +0000
commitaa5ad370822b22367c3ff53347e24f63ff31d7a4 (patch)
tree73df528335a0514dc44aa0ec05e3f200e044489e /modules
parent76000f1d449df599c9995afaf1e92b346d05a3da (diff)
downloadbrdo-aa5ad370822b22367c3ff53347e24f63ff31d7a4.tar.gz
brdo-aa5ad370822b22367c3ff53347e24f63ff31d7a4.tar.bz2
- #34401: Validation error (form method must be lowercase 'get' or 'post')
Diffstat (limited to 'modules')
-rw-r--r--modules/system.module2
-rw-r--r--modules/system/system.module2
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/system.module b/modules/system.module
index 25d1b1c66..a83a25212 100644
--- a/modules/system.module
+++ b/modules/system.module
@@ -54,7 +54,7 @@ function system_perm() {
*/
function system_elements() {
// Top level form
- $type['form'] = array('#method' => 'POST', '#action' => request_uri());
+ $type['form'] = array('#method' => 'post', '#action' => request_uri());
// Inputs
$type['checkbox'] = array('#input' => TRUE, '#return_value' => 1);
diff --git a/modules/system/system.module b/modules/system/system.module
index 25d1b1c66..a83a25212 100644
--- a/modules/system/system.module
+++ b/modules/system/system.module
@@ -54,7 +54,7 @@ function system_perm() {
*/
function system_elements() {
// Top level form
- $type['form'] = array('#method' => 'POST', '#action' => request_uri());
+ $type['form'] = array('#method' => 'post', '#action' => request_uri());
// Inputs
$type['checkbox'] = array('#input' => TRUE, '#return_value' => 1);