diff options
Diffstat (limited to 'views/failsafe')
-rw-r--r-- | views/failsafe/input/form.php | 2 | ||||
-rw-r--r-- | views/failsafe/messages/sanitisation/settings.php | 2 |
2 files changed, 3 insertions, 1 deletions
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> |