summaryrefslogtreecommitdiffstats
path: root/template
diff options
context:
space:
mode:
authormkanat%bugzilla.org <>2009-08-01 13:32:25 +0200
committermkanat%bugzilla.org <>2009-08-01 13:32:25 +0200
commit1fa897d67e402dd7becfb5c418c24cf655e32853 (patch)
tree4803328075e905c179964fb0ce2329f5474a4055 /template
parentcc4bb4cb59b51fd85fdd1c1f77ed73039d01fbb5 (diff)
downloadbugzilla-1fa897d67e402dd7becfb5c418c24cf655e32853.tar.gz
bugzilla-1fa897d67e402dd7becfb5c418c24cf655e32853.tar.xz
Bug 507326: Make it so that the header template doesn't overwrite any template var named "target".
Patch by Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=LpSolit
Diffstat (limited to 'template')
-rw-r--r--template/en/default/account/auth/login-small.html.tmpl12
1 files changed, 6 insertions, 6 deletions
diff --git a/template/en/default/account/auth/login-small.html.tmpl b/template/en/default/account/auth/login-small.html.tmpl
index 63f6d50d0..752aa64df 100644
--- a/template/en/default/account/auth/login-small.html.tmpl
+++ b/template/en/default/account/auth/login-small.html.tmpl
@@ -23,23 +23,23 @@
[%# Use the current script name. If an empty name is returned,
# then we are accessing the home page. %]
-[% target = cgi.url("-relative" => 1, "-query" => 1) %]
-[% IF !target %]
- [% target = "index.cgi" %]
+[% login_target = cgi.url("-relative" => 1, "-query" => 1) %]
+[% IF !login_target %]
+ [% login_target = "index.cgi" %]
[% END %]
[%# If SSL is in use, use 'sslbase', else use 'urlbase'. %]
[% IF Param("sslbase") != "" && Param("ssl") != "never" %]
- [% target = Param("sslbase") _ target %]
+ [% login_target = Param("sslbase") _ login_target %]
[% ELSE %]
- [% target = Param("urlbase") _ target %]
+ [% login_target = Param("urlbase") _ login_target %]
[% END %]
<li id="mini_login_container[% qs_suffix %]">
<span class="separator">| </span>
<a id="login_link[% qs_suffix %]" href="?GoAheadAndLogIn=1"
onclick="return show_mini_login_form('[% qs_suffix %]')">Log In</a>
- <form action="[% target FILTER html %]" method="POST"
+ <form action="[% login_target FILTER html %]" method="POST"
class="mini_login bz_default_hidden"
id="mini_login[% qs_suffix FILTER html %]"
onsubmit="return check_mini_login_fields( '[% qs_suffix FILTER html %]' );"