summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Bugzilla/Template.pm6
-rw-r--r--template/en/default/bug/activity/table.html.tmpl7
2 files changed, 13 insertions, 0 deletions
diff --git a/Bugzilla/Template.pm b/Bugzilla/Template.pm
index edfc037c6..5cf9bce9c 100644
--- a/Bugzilla/Template.pm
+++ b/Bugzilla/Template.pm
@@ -642,6 +642,12 @@ sub create {
1
],
+ bug_list_link => sub
+ {
+ my $buglist = shift;
+ return join(", ", map(get_bug_link($_, $_), split(/ *, */, $buglist)));
+ },
+
# In CSV, quotes are doubled, and any value containing a quote or a
# comma is enclosed in quotes.
csv => sub
diff --git a/template/en/default/bug/activity/table.html.tmpl b/template/en/default/bug/activity/table.html.tmpl
index 2a96b8689..31556623d 100644
--- a/template/en/default/bug/activity/table.html.tmpl
+++ b/template/en/default/bug/activity/table.html.tmpl
@@ -17,6 +17,7 @@
# Rights Reserved.
#
# Contributor(s): Gervase Markham <gerv@gerv.net>
+ # David D. Kilzer <ddkilzer@kilzer.net>
#%]
[%# INTERFACE:
@@ -85,6 +86,9 @@
[% status_descs.${change.removed} FILTER html %]
[% ELSIF change.fieldname == 'resolution' %]
[% resolution_descs.${change.removed} FILTER html %]
+ [% ELSIF change.fieldname == 'blocked' ||
+ change.fieldname == 'dependson' %]
+ [% change.removed FILTER bug_list_link FILTER none %]
[% ELSE %]
[% change.removed FILTER html %]
[% END %]
@@ -102,6 +106,9 @@
[% status_descs.${change.added} FILTER html %]
[% ELSIF change.fieldname == 'resolution' %]
[% resolution_descs.${change.added} FILTER html %]
+ [% ELSIF change.fieldname == 'blocked' ||
+ change.fieldname == 'dependson' %]
+ [% change.added FILTER bug_list_link FILTER none %]
[% ELSE %]
[% change.added FILTER html %]
[% END %]