aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--views/default/input/form.php2
-rw-r--r--views/failsafe/input/form.php2
-rw-r--r--views/failsafe/messages/sanitisation/settings.php2
3 files changed, 5 insertions, 1 deletions
diff --git a/views/default/input/form.php b/views/default/input/form.php
index 25f140a01..11fb485da 100644
--- a/views/default/input/form.php
+++ b/views/default/input/form.php
@@ -40,6 +40,8 @@ if (isset($vars['method'])) {
$method = 'POST';
}
+$method = strtolower($method);
+
// Generate a security header
$security_header = "";
if ($vars['disable_security']!=true) {
diff --git a/views/failsafe/input/form.php b/views/failsafe/input/form.php
index 10fe89dcf..33ddfc3ea 100644
--- a/views/failsafe/input/form.php
+++ b/views/failsafe/input/form.php
@@ -39,6 +39,8 @@ if (isset($vars['method'])) {
$method = 'POST';
}
+$method = strtolower($method);
+
?>
<form <?php if ($id) { ?>id="<?php echo $id; ?>" <?php } ?> <?php if ($name) { ?>name="<?php echo $name; ?>" <?php } ?> action="<?php echo $action; ?>" method="<?php echo $method; ?>" <?php if ($enctype!="") echo "enctype=\"$enctype\""; ?>>
<?php echo $body; ?>
diff --git a/views/failsafe/messages/sanitisation/settings.php b/views/failsafe/messages/sanitisation/settings.php
index cf3ee719d..1fe807a05 100644
--- a/views/failsafe/messages/sanitisation/settings.php
+++ b/views/failsafe/messages/sanitisation/settings.php
@@ -21,7 +21,7 @@ if ($vars['settings.php']) {
?>
<div>
<h2><?php echo elgg_echo('installation:settings:dbwizard:prompt'); ?></h2>
- <form method="POST">
+ <form method="post">
<table cellpadding="0" cellspacing="10" style="background:#f1f1f1;">
<tr><td valign="top"><?php echo elgg_echo('installation:settings:dbwizard:label:user'); ?></td><td valign="top"> <input type="text" name="db_install_vars[CONFIG_DBUSER]" /></td></tr>
<tr><td valign="top"><?php echo elgg_echo('installation:settings:dbwizard:label:pass'); ?></td><td valign="top"> <input type="password" name="db_install_vars[CONFIG_DBPASS]" /></td></tr>