[ 831784 ] Pagination in Messeboard with multiple boards

This commit is contained in:
JT Smith 2003-11-15 23:13:12 +00:00
parent 46bb4e9c0a
commit 77f6008043
2 changed files with 2 additions and 1 deletions

View file

@ -3,6 +3,7 @@
- Added Apache 2 instructions to install.txt. (Thanks to Andy Grundman.)
- Fixed bug [ 831628 ] Subscription notifications sent in wrong language.
- Fixed bug [ 828071 ] USS doubles the number of replies
- Fixed bug [ 831784 ] Pagination in Messeboard with multiple boards
5.5.0
- Rewrote the discussion system and added many new features in the process.

View file

@ -1054,7 +1054,7 @@ sub getForumTemplateVars {
} else {
$query .= "lastPostDate desc";
}
my $p = WebGUI::Paginator->new($callback,"",$forum->get("postsPerPage"));
my $p = WebGUI::Paginator->new(WebGUI::URL::append($callback,"forumOp=viewForum&forumId=".$forum->get("forumId")),"",$forum->get("postsPerPage"));
$p->setDataByQuery($query);
$var{firstPage} = $p->getFirstPageLink;
$var{lastPage} = $p->getLastPageLink;