diff options
author | David Lawrence <dkl@mozilla.com> | 2016-05-31 23:29:31 +0200 |
---|---|---|
committer | David Lawrence <dkl@mozilla.com> | 2016-05-31 23:29:31 +0200 |
commit | e31c0e9c22197ba938c6f4a853347edf54931700 (patch) | |
tree | ff9cd88a72c9e5cd8d969df2938be745a7bad5c7 /extensions/BugModal/template/en | |
parent | e1e8135e1a703adbb17fffcd8da9297286ba6877 (diff) | |
download | bugzilla-e31c0e9c22197ba938c6f4a853347edf54931700.tar.gz bugzilla-e31c0e9c22197ba938c6f4a853347edf54931700.tar.xz |
Bug 1262459 - restyle the "this bug has been marked as a duplicate" comment
Diffstat (limited to 'extensions/BugModal/template/en')
-rw-r--r-- | extensions/BugModal/template/en/default/bug_modal/activity_stream.html.tmpl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/extensions/BugModal/template/en/default/bug_modal/activity_stream.html.tmpl b/extensions/BugModal/template/en/default/bug_modal/activity_stream.html.tmpl index e15f8837b..807f5772f 100644 --- a/extensions/BugModal/template/en/default/bug_modal/activity_stream.html.tmpl +++ b/extensions/BugModal/template/en/default/bug_modal/activity_stream.html.tmpl @@ -254,8 +254,10 @@ END; IF change.buglist; - IF change.fieldname == 'duplicate'; + IF change.fieldname == 'has_dupe'; label = "Duplicate of this " _ terms.bug; + ELSIF change.fieldname == 'dupe_of'; + label = "Duplicate of " _ terms.bug; ELSE; label = field_descs.${change.fieldname}; END; |