From aa0af6a8d190b51f4d62e7c8732604a6193b3337 Mon Sep 17 00:00:00 2001 From: ivan Date: Fri, 14 Sep 2007 03:31:05 +0000 Subject: [PATCH] fix visual glitch on "RT at a glance" / Ticketing main --- rt/html/Elements/TicketList | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/rt/html/Elements/TicketList b/rt/html/Elements/TicketList index 02b071624..b36101e73 100644 --- a/rt/html/Elements/TicketList +++ b/rt/html/Elements/TicketList @@ -64,10 +64,9 @@ % my $i; % while (my $record = $Collection->Next) { % $i++; -% # Every $RT::MyTicketsLength or ten rows, flush the buffer and put something -% # on the page. -% my $flushrows = $RT::MyTicketsLength || 10; -% $m->flush_buffer() unless ($i % $flushrows); +% # Every ten rows, flush the buffer and put something on the page. +% # hun, this flushes things out out-of-order for me on "RT at a glance"...? +% # $m->flush_buffer() unless ($i % 10); <& /Elements/CollectionAsTable/Row, Format => \@Format, i => $i, record => $record, maxitems => $maxitems &> % } -- 2.11.0