diff options
author | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-05-13 08:31:38 +0200 |
---|---|---|
committer | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-05-13 08:31:38 +0200 |
commit | 1b19be9763e73638a84989baf450cc3328836946 (patch) | |
tree | 8b8a143612a233b3cdc4224193e280ab515348a1 /template/en/default | |
parent | 34e9970696a7dd34bc21cea973d2ad3696440792 (diff) | |
download | bugzilla-1b19be9763e73638a84989baf450cc3328836946.tar.gz bugzilla-1b19be9763e73638a84989baf450cc3328836946.tar.xz |
Replace "in_group(timetracker)" in bug/comments.html with is_timetracker.
https://bugzilla.mozilla.org/show_bug.cgi?id=271913
Diffstat (limited to 'template/en/default')
-rw-r--r-- | template/en/default/bug/comments.html.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/template/en/default/bug/comments.html.tmpl b/template/en/default/bug/comments.html.tmpl index 3012bab5e..27f7b3593 100644 --- a/template/en/default/bug/comments.html.tmpl +++ b/template/en/default/bug/comments.html.tmpl @@ -158,7 +158,7 @@ [% BLOCK a_comment %] [% RETURN IF comment.is_private AND ! user.is_insider %] - [% RETURN IF timetracking_only AND !user.in_group(Param('timetrackinggroup')) %] + [% RETURN IF timetracking_only AND !user.is_timetracker %] <div id="c[% count %]" class="bz_comment[% " bz_private" IF comment.is_private %] [% " bz_comment_hilite" IF marks.$count %] |