diff options
-rw-r--r-- | extensions/Needinfo/template/en/default/bug/needinfo.html.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extensions/Needinfo/template/en/default/bug/needinfo.html.tmpl b/extensions/Needinfo/template/en/default/bug/needinfo.html.tmpl index 1bd01b58b..0e023fcc2 100644 --- a/extensions/Needinfo/template/en/default/bug/needinfo.html.tmpl +++ b/extensions/Needinfo/template/en/default/bug/needinfo.html.tmpl @@ -75,9 +75,9 @@ if (role == 'reporter') { identity = '[% bug.reporter.realname || bug.reporter.login FILTER html FILTER js %]'; } else if (role == 'assigned_to') { - identity = '[% bug.assigned_to.realname || bug.reporter.login FILTER html FILTER js %]'; + identity = '[% bug.assigned_to.realname || bug.assigned_to.login FILTER html FILTER js %]'; } else if (role == 'qa_contact') { - identity = '[% bug.qa_contact.realname || bug.reporter.login FILTER html FILTER js %]'; + identity = '[% bug.qa_contact.realname || bug.qa_contact.login FILTER html FILTER js %]'; } YAHOO.util.Dom.get('needinfo_role_identity').innerHTML = identity; } |