diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2005-10-19 09:28:21 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2005-10-19 09:28:21 +0000 |
commit | aa5ad370822b22367c3ff53347e24f63ff31d7a4 (patch) | |
tree | 73df528335a0514dc44aa0ec05e3f200e044489e | |
parent | 76000f1d449df599c9995afaf1e92b346d05a3da (diff) | |
download | brdo-aa5ad370822b22367c3ff53347e24f63ff31d7a4.tar.gz brdo-aa5ad370822b22367c3ff53347e24f63ff31d7a4.tar.bz2 |
- #34401: Validation error (form method must be lowercase 'get' or 'post')
-rw-r--r-- | modules/system.module | 2 | ||||
-rw-r--r-- | modules/system/system.module | 2 |
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); |