summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rt/share/html/Elements/QueueSummaryByLifecycle3
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;