Groups: Display current page in list of user groups

This commit is contained in:
Maxim Leshchenko 2021-12-24 22:17:05 +02:00
parent 948719ec3d
commit 48bfd36807
No known key found for this signature in database
GPG key ID: BB9C44A8733FBEEE

View file

@ -87,7 +87,7 @@ final class UserPresenter extends OpenVKPresenter
$this->flashFail("err", tr("forbidden"), tr("forbidden_comment"));
else {
$this->template->user = $user;
$this->template->page = $this->queryParam("p") ?? 1;
$this->template->page = (int) ($this->queryParam("p") ?? 1);
$this->template->admin = $this->queryParam("act") == "managed";
}
}