From a75305bf103568af904028d0bc63e35056f9bc9c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kjetil=20=C3=98rbekk?= Date: Sat, 4 Sep 2010 11:00:11 -0400 Subject: Fix quote numbers displayed on front page --- html/quotes.jsp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'html') 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; } %> -- cgit v1.2.3