Commit 0b8a6e8c authored by Max Kanat-Alexander's avatar Max Kanat-Alexander

Bug 634243: Stop confirm-match.html.tmpl from sending extra, empty values for

each field being confirmed. This fixes a bug where confirming would fail, displaying a value with an extra comma at the end. r=LpSolit, a=LpSolit
parent 1bc66daa
...@@ -150,6 +150,8 @@ ...@@ -150,6 +150,8 @@
[% ELSE %] [% ELSE %]
matched matched
<b>[% query.value.users.0.identity FILTER html %]</b> <b>[% query.value.users.0.identity FILTER html %]</b>
<input type="hidden" name="[% field.key FILTER html %]"
value="[% query.value.users.0.login FILTER html %]">
[% END %] [% END %]
[% ELSE %] [% ELSE %]
[% IF (query.key.length < 3) && !Param('emailsuffix') %] [% IF (query.key.length < 3) && !Param('emailsuffix') %]
...@@ -174,7 +176,10 @@ ...@@ -174,7 +176,10 @@
[% IF matchsuccess == 1 %] [% IF matchsuccess == 1 %]
[% PROCESS "global/hidden-fields.html.tmpl" exclude="^Bugzilla_(login|password)$" %] [% SET exclude_these =
matches.keys.merge(['Bugzilla_login', 'Bugzilla_password']) %]
[% SET exclude = '^' _ exclude_these.join('|') _ '$' %]
[% PROCESS "global/hidden-fields.html.tmpl" exclude = exclude %]
<p> <p>
<input type="submit" id="continue" value="Continue"> <input type="submit" id="continue" value="Continue">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment