summaryrefslogtreecommitdiff
path: root/html/quotes.jsp
diff options
context:
space:
mode:
Diffstat (limited to 'html/quotes.jsp')
-rw-r--r--html/quotes.jsp4
1 files changed, 3 insertions, 1 deletions
diff --git a/html/quotes.jsp b/html/quotes.jsp
index f855044..97e9daf 100644
--- a/html/quotes.jsp
+++ b/html/quotes.jsp
@@ -65,8 +65,10 @@ if (order == null) {
}
lq.Printer printer = new lq.Printer(out);
+long displayIndex = quotes.size() + 1;
for (lq.Quote quote : quotes) {
- printer.printQuote(quote);
+ printer.printQuote(quote, displayIndex);
+ displayIndex = displayIndex - 1;
}
%>