From 8edeefb2ba59401254391ef33e223585eff20471 Mon Sep 17 00:00:00 2001 From: Mark Wells Date: Sat, 25 Jun 2016 21:02:22 -0700 Subject: [PATCH] fix queue summary on RT dashboard, #41670 --- rt/share/html/Elements/QueueSummaryByLifecycle | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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; -- 2.11.0