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/plugininstall.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/plugininstall.html')
-rw-r--r-- | ratatoeskr/templates/src/systemtemplates/plugininstall.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ratatoeskr/templates/src/systemtemplates/plugininstall.html b/ratatoeskr/templates/src/systemtemplates/plugininstall.html index 7b5c586..9b4117b 100644 --- a/ratatoeskr/templates/src/systemtemplates/plugininstall.html +++ b/ratatoeskr/templates/src/systemtemplates/plugininstall.html @@ -4,7 +4,7 @@ <ste:default_success /> <h2><ste:get_translation for="install_from_package" /></h2> - <form action="$rel_path_to_root/backend/plugin/install" method="POST" accept-charset="UTF-8" enctype="multipart/form-data"> + <form action="$rel_path_to_root/backend/plugin/install" method="post" accept-charset="UTF-8" enctype="multipart/form-data"> <input type="file" name="pluginpackage" /> <input type="submit" name="installpackage" /> </form> @@ -13,7 +13,7 @@ <ste:if> ~{$repos_n|gt|0} <ste:then> - <form action="$rel_path_to_root/backend/plugin/install" method="POST" accept-charset="UTF-8"> + <form action="$rel_path_to_root/backend/plugin/install" method="post" accept-charset="UTF-8"> <ste:get_translation for="search" />: <input type="text" name="searchfor" /> <ste:get_translation for="repo_plugin_search_in" />: <select name="searchin"> |