diff options
author | Kevin Chabowski <kevin@kch42.de> | 2012-02-03 21:43:54 +0100 |
---|---|---|
committer | Kevin Chabowski <kevin@kch42.de> | 2012-02-03 21:43:54 +0100 |
commit | 86deada91a275ec1372817603758ab771cfaa417 (patch) | |
tree | 73713cdae933e66e9da039d1243c70ecdc0d77d7 /ratatoeskr/templates/src/systemtemplates/settings.html | |
parent | 2c2b3c89f8b69b42220c19a811feb6a7b85e989f (diff) | |
download | ratatoeskr-cms-86deada91a275ec1372817603758ab771cfaa417.tar.gz ratatoeskr-cms-86deada91a275ec1372817603758ab771cfaa417.tar.bz2 ratatoeskr-cms-86deada91a275ec1372817603758ab771cfaa417.zip |
TIL: <form />'s method value *MUST* be lowercase.
<irony>That makes kind of sense, since it is written UPPERcase in the
HTTP protocol...</irony>
Diffstat (limited to 'ratatoeskr/templates/src/systemtemplates/settings.html')
-rw-r--r-- | ratatoeskr/templates/src/systemtemplates/settings.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ratatoeskr/templates/src/systemtemplates/settings.html b/ratatoeskr/templates/src/systemtemplates/settings.html index 6a5b814..63bb0cb 100644 --- a/ratatoeskr/templates/src/systemtemplates/settings.html +++ b/ratatoeskr/templates/src/systemtemplates/settings.html @@ -4,14 +4,14 @@ <ste:default_error /> <ste:default_success /> - <form action="$rel_path_to_root/backend/admin/settings" method="POST" accept-charset="UTF-8"> + <form action="$rel_path_to_root/backend/admin/settings" method="post" accept-charset="UTF-8"> <h2><ste:get_translation for="comment_settings" /></h2> <strong><ste:get_translation for="comment_textprocessor" />:</strong> <ste:instant_select name="comment_textprocessor" array="textprocessors" selected="$comment_textprocessor" /><br /> <strong><ste:get_translation for="comment_auto_visible" />:</strong> <input type="checkbox" name="comment_auto_visible" value="yes"?{$comment_auto_visible| checked="checked"|} /><br /> <input type="submit" name="save_comment_settings" /> </form> - <form action="$rel_path_to_root/backend/admin/settings" method="POST" accept-charset="UTF-8"> + <form action="$rel_path_to_root/backend/admin/settings" method="post" accept-charset="UTF-8"> <h2><ste:get_translation for="language_settings" /></h2> <table class="listtab"> <thead> |