summaryrefslogtreecommitdiffstats
path: root/extensions/BugModal/template
diff options
context:
space:
mode:
authorMary Umoh <umohm12@gmail.com>2017-06-05 18:49:39 +0200
committerDylan William Hardison <dylan@hardison.net>2017-06-05 18:49:39 +0200
commitc182928f126744a7b3cf2c8cf6f5c9f17bc7aff9 (patch)
tree3c264c233bbd46595356531f069c01d58a344e50 /extensions/BugModal/template
parentef7cfc1b8503432771f723adec81be5ad475a7a8 (diff)
downloadbugzilla-c182928f126744a7b3cf2c8cf6f5c9f17bc7aff9.tar.gz
bugzilla-c182928f126744a7b3cf2c8cf6f5c9f17bc7aff9.tar.xz
Bug 1348439 - History item "reporter accessible: true" is confusing
* Remove + signs
Diffstat (limited to 'extensions/BugModal/template')
-rw-r--r--extensions/BugModal/template/en/default/bug_modal/activity_stream.html.tmpl9
1 files changed, 9 insertions, 0 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 25198a7f2..8e4c47fbf 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
@@ -311,6 +311,8 @@
<a href="#c[% change.comment.count FILTER none %]">
Comment [% change.comment.count FILTER none %]</a> is private:
[%+
+ ELSIF change.fieldname == 'reporter_accessible';
+ "";
ELSE;
field_descs.${change.fieldname} _ ": " FILTER html;
END;
@@ -366,6 +368,13 @@
CASE [ 'assigned_to', 'reporter', 'qa_contact', 'cc', 'flagtypes.name' ];
value FILTER email;
+ CASE 'reporter_accessible';
+ IF value == 'true';
+ "Accessible to reporter";
+ ELSIF value == 'false';
+ "Not accessible to reporter";
+ END;
+
CASE;
IF change.fieldtype == constants.FIELD_TYPE_DATETIME;
INCLUDE bug_modal/rel_time.html.tmpl ts=value;