summaryrefslogtreecommitdiffstats
path: root/extensions/Needinfo
diff options
context:
space:
mode:
authorByron Jones <bjones@mozilla.com>2013-09-26 08:48:52 +0200
committerByron Jones <bjones@mozilla.com>2013-09-26 08:48:52 +0200
commit69016099b3a2ae057f5e33ec30545a8209589446 (patch)
tree4f94cf14a5e309ea31bd6cd393988d2d4cc1bddb /extensions/Needinfo
parentdc20e895c1cbcf6d9d1eea80d99c82447867fc4f (diff)
downloadbugzilla-69016099b3a2ae057f5e33ec30545a8209589446.tar.gz
bugzilla-69016099b3a2ae057f5e33ec30545a8209589446.tar.xz
fix issue with needinfo names from bug 919376
Diffstat (limited to 'extensions/Needinfo')
-rw-r--r--extensions/Needinfo/template/en/default/bug/needinfo.html.tmpl4
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;
}