summaryrefslogtreecommitdiff
path: root/tests/templates/login.html
diff options
context:
space:
mode:
authorLuke Plant <L.Plant.98@cantab.net>2016-01-21 15:54:13 +0000
committerTim Graham <timograham@gmail.com>2016-01-21 14:00:23 -0500
commita034ced2efccafdf394b807487ee97665fe003c3 (patch)
tree043b34776630aaf2f3216fc7dd9b439bea9e5ccc /tests/templates/login.html
parent8502e9f04974660c80efc74f6e60ed566b3f52b3 (diff)
[1.8.x] Changed `action="."` to `action=""` in tests and docs.
`action="."` strips query parameters from the URL which is not usually what you want. Copy-paste coding of these examples could lead to difficult to track down bugs or even data loss if the query parameter was meant to alter the scope of a form's POST request. Backport of 77974a684a2e874bccd8bd9e0939ddcb367a8ed2 from master
Diffstat (limited to 'tests/templates/login.html')
-rw-r--r--tests/templates/login.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/templates/login.html b/tests/templates/login.html
index 7f50df2ba1..0d301600a5 100644
--- a/tests/templates/login.html
+++ b/tests/templates/login.html
@@ -5,7 +5,7 @@
<p>Your username and password didn't match. Please try again.</p>
{% endif %}
-<form method="post" action=".">
+<form method="post" action="">
<table>
<tr><td><label for="id_username">Username:</label></td><td>{{ form.username }}</td></tr>
<tr><td><label for="id_password">Password:</label></td><td>{{ form.password }}</td></tr>