mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
Allow paginating package comments
Signed-off-by: Johannes Löthberg <johannes@kyriasis.com> Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
This commit is contained in:
parent
3578e77ad4
commit
257115943e
2 changed files with 6 additions and 4 deletions
|
@ -291,9 +291,10 @@ function pkgbase_display_details($base_id, $row, $SID="") {
|
|||
unset($pinned);
|
||||
|
||||
|
||||
$limit = isset($_GET['comments']) ? 0 : 10;
|
||||
$comments = pkgbase_comments($base_id, $limit, $include_deleted);
|
||||
$total_comment_count = pkgbase_comments_count($base_id, $include_deleted);
|
||||
list($pagination_templs, $per_page, $offset) = calculate_pagination($total_comment_count);
|
||||
|
||||
$comments = pkgbase_comments($base_id, $per_page, $include_deleted, false, $offset);
|
||||
if (!empty($comments)) {
|
||||
$comment_section = "package";
|
||||
include('pkg_comments.php');
|
||||
|
|
|
@ -630,9 +630,10 @@ function pkg_display_details($id=0, $row, $SID="") {
|
|||
unset($pinned);
|
||||
|
||||
|
||||
$limit = isset($_GET['comments']) ? 0 : 10;
|
||||
$comments = pkgbase_comments($base_id, $limit, $include_deleted);
|
||||
$total_comment_count = pkgbase_comments_count($base_id, $include_deleted);
|
||||
list($pagination_templs, $per_page, $offset) = calculate_pagination($total_comment_count);
|
||||
|
||||
$comments = pkgbase_comments($base_id, $per_page, $include_deleted, false, $offset);
|
||||
if (!empty($comments)) {
|
||||
$comment_section = "package";
|
||||
include('pkg_comments.php');
|
||||
|
|
Loading…
Add table
Reference in a new issue