diff options
author | lpsolit%gmail.com <> | 2006-03-31 20:41:42 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2006-03-31 20:41:42 +0200 |
commit | 03dd95d656f6725846702fbb1ff535b03c9a4c73 (patch) | |
tree | 952cada7f71d5c8d0659f75a276c2f5a6949e427 /template | |
parent | f5c61f2184b3d93768eacfd676a5513caabcc1a5 (diff) | |
download | bugzilla-03dd95d656f6725846702fbb1ff535b03c9a4c73.tar.gz bugzilla-03dd95d656f6725846702fbb1ff535b03c9a4c73.tar.xz |
Bug 332142: Incorrect output when updating components - Patch by Frédéric Buclin <LpSolit@gmail.com> r=kiko a=justdave
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/admin/components/updated.html.tmpl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/template/en/default/admin/components/updated.html.tmpl b/template/en/default/admin/components/updated.html.tmpl index e05bc0973..43214f979 100644 --- a/template/en/default/admin/components/updated.html.tmpl +++ b/template/en/default/admin/components/updated.html.tmpl @@ -55,13 +55,13 @@ [% END %] [% IF updated_initialowner %] - <p>Updated Default Assignee to: '[% comp.initialowner FILTER html %]'.</p> + <p>Updated Default Assignee to: '[% comp.default_assignee.login FILTER html %]'.</p> [% END %] [% IF updated_initialqacontact %] <p> - [% IF initialqacontact %] - Updated Default QA Contact to '[% comp.initialqacontact FILTER html %]'. + [% IF comp.default_qa_contact.id %] + Updated Default QA Contact to '[% comp.default_qa_contact.login FILTER html %]'. [% ELSE %] Removed Default QA Contact. [% END %] |