From 71cfd6e09aa3c7acaf1bd2a78b5056d7377e44cf Mon Sep 17 00:00:00 2001 From: Ioannis Igoumenos Date: Thu, 3 Sep 2026 16:36:38 +0300 Subject: [PATCH] Fix coid typo --- app/src/Controller/PagesController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/Controller/PagesController.php b/app/src/Controller/PagesController.php index 8233564f8..d823ff348 100644 --- a/app/src/Controller/PagesController.php +++ b/app/src/Controller/PagesController.php @@ -70,7 +70,7 @@ public function deliver(string $coid, string $name) { if(!$CoSettings->uploadsEnabled()) { $this->Flash->error(__d('error', 'MostlyStaticResources.disabled')); - return $this->redirect(StringUtilities::pagesUrl($coId, "error-landing")); + return $this->redirect(StringUtilities::pagesUrl($coid, "error-landing")); } $MSRTable = TableRegistry::getTableLocator()->get("MostlyStaticResources");