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"); }