From 127add249c76263a09a658969805f3505aa0a1cf Mon Sep 17 00:00:00 2001 From: inga-lovinde <52715130+inga-lovinde@users.noreply.github.com> Date: Mon, 14 Jun 2010 10:54:56 +0000 Subject: [PATCH] Fixed slight bug in PageOuter --- IISMainHandler/PageOuter.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/IISMainHandler/PageOuter.cs b/IISMainHandler/PageOuter.cs index f6875e5..8bc2f17 100644 --- a/IISMainHandler/PageOuter.cs +++ b/IISMainHandler/PageOuter.cs @@ -78,6 +78,7 @@ namespace FLocal.IISHandler { pages.Add(startFloor + i*this.perPage); } } + pages.Add(this.start); result.Add(new XElement("pages", from page in pages where (page >= 0) && (page <= this.total) orderby page select new XElement("page", page) ));