diff --git a/src/Forum/ForumCategoriesRoutes.php b/src/Forum/ForumCategoriesRoutes.php index bc37c43..148c7fe 100644 --- a/src/Forum/ForumCategoriesRoutes.php +++ b/src/Forum/ForumCategoriesRoutes.php @@ -171,7 +171,7 @@ class ForumCategoriesRoutes implements RouteHandler, UrlSource { } #[HttpGet('/forum/([0-9]+)')] - #[UrlFormat('forum-category', '/forum/', ['p' => ''])] + #[UrlFormat('forum-category', '/forum/', ['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;