diff options
author | Dylan William Hardison <dylan@hardison.net> | 2017-12-20 19:50:12 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-20 19:50:12 +0100 |
commit | 7754ea1c7cab26b5b40e7653f1d6cbe7d246c975 (patch) | |
tree | ed39b1672e477e22ca5f5a3c8afd075e29c25750 /template/en/default/bug | |
parent | d87c64e5805adb4bae54b10d517c10463a9251fc (diff) | |
download | bugzilla-7754ea1c7cab26b5b40e7653f1d6cbe7d246c975.tar.gz bugzilla-7754ea1c7cab26b5b40e7653f1d6cbe7d246c975.tar.xz |
Bug 1361890 - Remove asset concatenation
Diffstat (limited to 'template/en/default/bug')
-rw-r--r-- | template/en/default/bug/comments.html.tmpl | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/template/en/default/bug/comments.html.tmpl b/template/en/default/bug/comments.html.tmpl index 2f8658c9c..9c8b56217 100644 --- a/template/en/default/bug/comments.html.tmpl +++ b/template/en/default/bug/comments.html.tmpl @@ -22,7 +22,7 @@ [% PROCESS bug/time.html.tmpl %] -<script src="[% 'js/comments.js' FILTER mtime %]" type="text/javascript"> +<script src="[% 'js/comments.js' FILTER version %]" type="text/javascript"> </script> <script type="text/javascript"> @@ -43,7 +43,7 @@ [% IF user.is_insider %] if (document.getElementById('isprivate_' + real_id).checked) { document.getElementById('newcommentprivacy').checked = 'checked'; - updateCommentTagControl(document.getElementById('newcommentprivacy'), 'comment'); + updateCommentTagControl(document.getElementById('newcommentprivacy'), 'comment'); } [% END %] @@ -111,7 +111,7 @@ [% Hook.process("comment_banner") %] -<!-- This auto-sizes the comments and positions the collapse/expand links +<!-- This auto-sizes the comments and positions the collapse/expand links to the right. --> <table class="bz_comment_table" cellpadding="0" cellspacing="0"><tr> <td> @@ -120,13 +120,13 @@ [% IF count >= start_at %] [% PROCESS a_comment %] [% END %] - + [% count = count + increment %] [% END %] [%# Note: this template is used in multiple places; if you use this hook, # make sure you are aware of this fact. - #%] + #%] [% Hook.process("aftercomments") %] </td> @@ -217,7 +217,7 @@ [% END %] <span role="heading" aria-level="2" class="bz_comment_number"> - <a + <a href="show_bug.cgi?id=[% bug.bug_id %]#c[% comment.count %]"> [%- comment_label FILTER html %]</a> </span> @@ -260,7 +260,7 @@ [% IF user.is_timetracker && (comment.work_time > 0 || comment.work_time < 0) %] <br> - Additional hours worked: + Additional hours worked: [% PROCESS formattimeunit time_unit=comment.work_time %] [% END %] |