Update WallPresenter.php

This commit is contained in:
Dmitry Tretyakov 2023-10-25 16:47:40 +07:00
parent 158f1938bb
commit b70c6c96bb

View file

@ -152,7 +152,7 @@ final class WallPresenter extends OpenVKPresenter
->where("deleted", 0)
->order("created DESC");
$this->template->paginatorConf = (object) [
"count" => $posts->getRowCount(),
"count" => sizeof($posts),
"page" => (int) ($_GET["p"] ?? 1),
"amount" => $posts->page((int) ($_GET["p"] ?? 1), $perPage)->getRowCount(),
"perPage" => $perPage,