diff options
author | Dan McGee <dan@archlinux.org> | 2010-06-11 17:29:46 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2010-06-11 17:29:46 -0500 |
commit | b3059dd3e871de3bc34fa3ee7ab9730c034f22df (patch) | |
tree | 9842753abf3503c37af809e7b15cec26da759b44 /templates/packages | |
parent | 408288719e7515ac01c6eb81a5a2d9a1c63a62bc (diff) |
Remove action when submitting to same URL
It looks like the `action="."` business was screwing up some browsers,
notably lynx and links. We don't need it as the default is to submit to the
same page anyway, so kill this gunk and see if it fixes a login CSRF issue.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates/packages')
-rw-r--r-- | templates/packages/flag.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/packages/flag.html b/templates/packages/flag.html index 9a5b123b..b459819f 100644 --- a/templates/packages/flag.html +++ b/templates/packages/flag.html @@ -31,7 +31,7 @@ <p>Please confirm your flag request for {{pkg.pkgname}}:</p> - <form id="flag-pkg-form" method="post" action=".">{% csrf_token %} + <form id="flag-pkg-form" method="post">{% csrf_token %} <fieldset> {{ form.as_p }} </fieldset> |