diff options
author | David Lawrence <dkl@mozilla.com> | 2016-05-20 19:17:18 +0200 |
---|---|---|
committer | David Lawrence <dkl@mozilla.com> | 2016-05-20 19:17:18 +0200 |
commit | 73fffe57d7604cd711a26130514aceeac12facb8 (patch) | |
tree | 1051c3e92c3b2bfca4381149d2a02d6e4daec5e2 /extensions/BugModal/lib | |
parent | 35b33fe133ff1284de0f33b2da4f132d3e7c8287 (diff) | |
download | bugzilla-73fffe57d7604cd711a26130514aceeac12facb8.tar.gz bugzilla-73fffe57d7604cd711a26130514aceeac12facb8.tar.xz |
Bug 1149384 - implement time tracking interface
Diffstat (limited to 'extensions/BugModal/lib')
-rw-r--r-- | extensions/BugModal/lib/ActivityStream.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/BugModal/lib/ActivityStream.pm b/extensions/BugModal/lib/ActivityStream.pm index 0bd88e623..86fa6bb3b 100644 --- a/extensions/BugModal/lib/ActivityStream.pm +++ b/extensions/BugModal/lib/ActivityStream.pm @@ -167,7 +167,7 @@ sub _add_comments_to_stream { next if $comment->type == CMT_HAS_DUPE; my $author_id = $comment->author->id; next if $comment->is_private && !($user->is_insider || $user->id == $author_id); - next if $comment->body eq '' && ($comment->work_time - 0) != 0 && !$user->is_timetracker; + next if $comment->body eq '' && ($comment->work_time - 0) != 0 && $user->is_timetracker; # treeherder is so spammy we hide its comments by default if ($author_id == $treeherder_id) { |