diff options
author | Byron Jones <glob@mozilla.com> | 2015-07-13 06:50:44 +0200 |
---|---|---|
committer | Byron Jones <glob@mozilla.com> | 2015-07-13 06:50:44 +0200 |
commit | e8551401528989667d87b4f7df9c3f97f5535cf7 (patch) | |
tree | 6980cd010c8183cfae1f7d5f54f506afc01ab365 /extensions/BugModal/template | |
parent | 6d535a5b6b5f8636306024c3839bcbd9754ee4b1 (diff) | |
download | bugzilla-e8551401528989667d87b4f7df9c3f97f5535cf7.tar.gz bugzilla-e8551401528989667d87b4f7df9c3f97f5535cf7.tar.xz |
Bug 1182498: Assignee not displayed correctly on some bugs
Diffstat (limited to 'extensions/BugModal/template')
-rw-r--r-- | extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl b/extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl index 0fd446988..9cfbd6727 100644 --- a/extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl +++ b/extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl @@ -453,7 +453,7 @@ [% unassigned = (bug.assigned_to.login == "nobody@mozilla.org") - || (bug.assigned_to.login.search("\.bugs$")); + || (bug.assigned_to.login.search('\.bugs$')); sub = "Reporter: " _ bug.reporter.moz_nick _ (unassigned ? ", Unassigned" : ", Assigned: " _ bug.assigned_to.moz_nick) |