From c0297d08d9605421abeb3cc581cb5b2b5e4b59e9 Mon Sep 17 00:00:00 2001 From: NiclasNorin Date: Mon, 6 Oct 2025 11:02:13 +0200 Subject: [PATCH] fix: posts pagination cache --- source/php/Module/Posts/Posts.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/php/Module/Posts/Posts.php b/source/php/Module/Posts/Posts.php index c3f6c3b28..b3074279c 100644 --- a/source/php/Module/Posts/Posts.php +++ b/source/php/Module/Posts/Posts.php @@ -242,7 +242,7 @@ public function data(): array * @return string */ private function getPaginationQueryVarName():string { - return "{$this->slug}-{$this->getID()}-page"; + return "mod-{$this->slug}-{$this->getID()}-page"; } /**