summaryrefslogtreecommitdiff
path: root/rt/html
diff options
context:
space:
mode:
authorivan <ivan>2007-09-14 03:31:05 +0000
committerivan <ivan>2007-09-14 03:31:05 +0000
commitaa0af6a8d190b51f4d62e7c8732604a6193b3337 (patch)
tree4ba1d397862d88fdc6433d9f65821944f57236b3 /rt/html
parent98d8b209eaa505466f20f3a4e2f8e597def34852 (diff)
fix visual glitch on "RT at a glance" / Ticketing main
Diffstat (limited to 'rt/html')
-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 &>
% }