diff options
Diffstat (limited to 'rt/html/Elements/TicketList')
-rw-r--r-- | rt/html/Elements/TicketList | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/rt/html/Elements/TicketList b/rt/html/Elements/TicketList index 81e265d93..7f715d921 100644 --- a/rt/html/Elements/TicketList +++ b/rt/html/Elements/TicketList @@ -65,7 +65,8 @@ % while (my $record = $Collection->Next) { % $i++; % # Every ten rows, flush the buffer and put something on the page. -% $m->flush_buffer() unless ($i % 10); +% # 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 &> % } |