diff options
author | Mark Wells <mark@freeside.biz> | 2016-06-13 13:54:04 -0700 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2016-06-13 13:54:04 -0700 |
commit | 092526ed67705660e1fb0ac12ed93753310171e3 (patch) | |
tree | dbc9c4342e47010c56367325db69aa79b8b55462 | |
parent | 93e64d8dec78c90f4a65249f5294c736b6129a9c (diff) |
backporting fix
-rw-r--r-- | rt/share/html/Elements/QueueSummaryByLifecycle | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/rt/share/html/Elements/QueueSummaryByLifecycle b/rt/share/html/Elements/QueueSummaryByLifecycle index 6c45cfdea..cf67a4fe9 100644 --- a/rt/share/html/Elements/QueueSummaryByLifecycle +++ b/rt/share/html/Elements/QueueSummaryByLifecycle @@ -72,7 +72,6 @@ for my $queue (@queues) { </%PERL> <tr class="<% $classes %>"> -<td></td> <td> <a href="<% $link_all->($queue, \@cur_statuses) %>" title="<% $queue->{Description} %>"><% $queue->{Name} %></a> </td> @@ -141,9 +140,6 @@ my $Search = RT::Search::UnrepliedTickets->new( TicketsObj => $Tickets ); $Search->Prepare; for my $queue (@queues) { - my $cycle = RT::Lifecycle->Load( Name => $queue->{'Lifecycle'} ); - $lifecycle{ lc $cycle->Name } = $cycle; - # show whether there are unreplied tickets # somewhat inefficient but we only use the count query my $tix = $Tickets->Clone; |