diff options
author | Koosha Khajeh Moogahi <koosha.khajeh@gmail.com> | 2012-09-19 21:11:15 +0200 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2012-09-19 21:11:15 +0200 |
commit | ccf50a2c6a7765bdec9d8b738367f93be679798c (patch) | |
tree | 8e0dfdebcc0a343c47dfd7a88987ab3ebf319381 /template/en | |
parent | 968667bb92b2f2e93e5c1b32b1aae36bacaf6a07 (diff) | |
download | bugzilla-ccf50a2c6a7765bdec9d8b738367f93be679798c.tar.gz bugzilla-ccf50a2c6a7765bdec9d8b738367f93be679798c.tar.xz |
Bug 445861: $component->default_qa_contact should not return the default user object when no default QA contact is defined
r/a=LpSolit
Diffstat (limited to 'template/en')
-rw-r--r-- | template/en/default/global/messages.html.tmpl | 2 | ||||
-rw-r--r-- | template/en/default/reports/components.html.tmpl | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/template/en/default/global/messages.html.tmpl b/template/en/default/global/messages.html.tmpl index d93ed537e..f151c3dd4 100644 --- a/template/en/default/global/messages.html.tmpl +++ b/template/en/default/global/messages.html.tmpl @@ -204,7 +204,7 @@ <li>Default assignee updated to '[% comp.default_assignee.login FILTER html %]'</li> [% END %] [% IF changes.initialqacontact.defined %] - [% IF comp.default_qa_contact.id %] + [% IF comp.default_qa_contact %] <li>Default QA contact updated to '[% comp.default_qa_contact.login FILTER html %]'</li> [% ELSE %] <li>Default QA contact deleted</li> diff --git a/template/en/default/reports/components.html.tmpl b/template/en/default/reports/components.html.tmpl index d1c9ac4d0..2a5d2399b 100644 --- a/template/en/default/reports/components.html.tmpl +++ b/template/en/default/reports/components.html.tmpl @@ -80,7 +80,9 @@ </td> [% IF Param("useqacontact") %] <td class="component_qa_contact"> - [% INCLUDE global/user.html.tmpl who = comp.default_qa_contact %] + [% IF comp.default_qa_contact %] + [% INCLUDE global/user.html.tmpl who = comp.default_qa_contact %] + [% END %] </td> [% END %] </tr> |