From 7f928db27511bfb3372eb584bd3a2d3459433888 Mon Sep 17 00:00:00 2001 From: Roland Gruber Date: Sun, 15 Aug 2010 08:54:10 +0000 Subject: [PATCH] titles for navigation buttons --- lam/lib/lists.inc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lam/lib/lists.inc b/lam/lib/lists.inc index f8ba2574..2bd7821a 100644 --- a/lam/lib/lists.inc +++ b/lam/lib/lists.inc @@ -280,12 +280,12 @@ class lamList { echo("type . "nav-activepage\" align=\"right\">"); if ($this->page != 1) { - echo("type . "&norefresh=true&page=1" . + echo("type . "&norefresh=true&page=1" . "&sort=" . $this->sortColumn . "&sortdirection=" . $this->sortDirection . $this->filterText . "\">" . "\"\"\n"); } if ($this->page > 10) { - echo("type . "&norefresh=true&page=" . ($this->page - 10) . + echo("type . "&norefresh=true&page=" . ($this->page - 10) . "&sort=" . $this->sortColumn . "&sortdirection=" . $this->sortDirection . $this->filterText . "\">" . "\"\"\n"); } @@ -305,12 +305,12 @@ class lamList { } } if ($this->page < (($count / $this->maxPageEntries) - 10)) { - echo("type . "&norefresh=true&page=" . ($this->page + 10) . + echo("type . "&norefresh=true&page=" . ($this->page + 10) . "&sort=" . $this->sortColumn . "&sortdirection=" . $this->sortDirection . $this->filterText . "\">" . "\"\"\n"); } if ($this->page < ($count / $this->maxPageEntries)) { - echo("type . "&norefresh=true&page=" . ($count / $this->maxPageEntries) . + echo("type . "&norefresh=true&page=" . ($count / $this->maxPageEntries) . "&sort=" . $this->sortColumn . "&sortdirection=" . $this->sortDirection . $this->filterText . "\">" . "\"\"\n"); }