diff options
author | Mark Wells <mark@freeside.biz> | 2016-06-25 21:02:22 -0700 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2016-06-25 21:02:22 -0700 |
commit | 8edeefb2ba59401254391ef33e223585eff20471 (patch) | |
tree | 74e3eab51aef73810a082942333445fd87722e5f | |
parent | 506c2dc3da817a631ea6f77f7ab3dcaa02c1c188 (diff) |
fix queue summary on RT dashboard, #41670
-rw-r--r-- | rt/share/html/Elements/QueueSummaryByLifecycle | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/rt/share/html/Elements/QueueSummaryByLifecycle b/rt/share/html/Elements/QueueSummaryByLifecycle index cf67a4fe9..8ffc84404 100644 --- a/rt/share/html/Elements/QueueSummaryByLifecycle +++ b/rt/share/html/Elements/QueueSummaryByLifecycle @@ -143,7 +143,8 @@ for my $queue (@queues) { # show whether there are unreplied tickets # somewhat inefficient but we only use the count query my $tix = $Tickets->Clone; - $tix->Limit(FIELD => 'Queue', + $tix->_SQLLimit( + FIELD => 'Queue', OPERATOR => '=', VALUE => $queue->{id}); $queue->{Unreplied} = $tix->Count; |