From: Mark Wells Date: Sun, 26 Jun 2016 04:02:22 +0000 (-0700) Subject: fix queue summary on RT dashboard, #41670 X-Git-Url: http://git.freeside.biz/gitweb/?a=commitdiff_plain;h=8edeefb2ba59401254391ef33e223585eff20471;hp=506c2dc3da817a631ea6f77f7ab3dcaa02c1c188;p=freeside.git fix queue summary on RT dashboard, #41670 --- 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;