p= -> page= for forum categories.

This commit is contained in:
Pachira 2024-12-20 00:10:20 +00:00
parent 06faf86d05
commit 504154ac38

View file

@ -171,7 +171,7 @@ class ForumCategoriesRoutes implements RouteHandler, UrlSource {
}
#[HttpGet('/forum/([0-9]+)')]
#[UrlFormat('forum-category', '/forum/<forum>', ['p' => '<page>'])]
#[UrlFormat('forum-category', '/forum/<forum>', ['page' => '<page>'])]
public function getCategory(HttpResponseBuilder $response, HttpRequest $request, string $catId) {
try {
$category = $this->forum->categories->getCategory(categoryId: $catId);
@ -196,7 +196,7 @@ class ForumCategoriesRoutes implements RouteHandler, UrlSource {
categoryInfo: $category,
global: true,
deleted: $perms->check(Perm::F_POST_DELETE_ANY) ? null : false
), 20, 'p');
), 20);
if(!$pagination->validOffset)
return 404;