summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rt/html/Elements/TicketList7
1 files changed, 3 insertions, 4 deletions
diff --git a/rt/html/Elements/TicketList b/rt/html/Elements/TicketList
index 02b0716..b36101e 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 &>
% }