diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2015-05-14 14:58:21 +0200 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2015-05-14 14:58:21 +0200 |
commit | e191f86ade269c2248a42744ddd6de03ec93e4fd (patch) | |
tree | 3c52757cd7445327cfc44b1eaa7afe1bb3d67c08 /template/en/default/global/confirm-user-match.html.tmpl | |
parent | f1b2372f1603fd4a61d6b4fc28a4b8119a0f4020 (diff) | |
download | bugs-e191f86ade269c2248a42744ddd6de03ec93e4fd.tar bugs-e191f86ade269c2248a42744ddd6de03ec93e4fd.tar.gz bugs-e191f86ade269c2248a42744ddd6de03ec93e4fd.tar.bz2 bugs-e191f86ade269c2248a42744ddd6de03ec93e4fd.tar.xz bugs-e191f86ade269c2248a42744ddd6de03ec93e4fd.zip |
Bug 1162914: Editing a user field when confirmuniqueusermatch = true no longer works
r=dkl a=glob
Diffstat (limited to 'template/en/default/global/confirm-user-match.html.tmpl')
-rw-r--r-- | template/en/default/global/confirm-user-match.html.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/template/en/default/global/confirm-user-match.html.tmpl b/template/en/default/global/confirm-user-match.html.tmpl index a3534b72a..613f097e1 100644 --- a/template/en/default/global/confirm-user-match.html.tmpl +++ b/template/en/default/global/confirm-user-match.html.tmpl @@ -147,7 +147,7 @@ [% SET exclude_these = ['Bugzilla_login', 'Bugzilla_password'] %] [% FOREACH key IN matches.keys %] - [% exclude_these.push(key) IF cgi.param(key) == '' %] + [% exclude_these.push(key) IF Bugzilla.cgi.param(key) == '' %] [% END %] [% SET exclude = '^' _ exclude_these.join('|') _ '$' %] [% PROCESS "global/hidden-fields.html.tmpl" exclude = exclude %] |