From a945cc518a43e8edbc5855cbaf51444acb82d857 Mon Sep 17 00:00:00 2001 From: flashwave Date: Mon, 11 Sep 2023 19:18:10 +0000 Subject: [PATCH] Fixed syntax error in post.php. --- public-legacy/forum/post.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public-legacy/forum/post.php b/public-legacy/forum/post.php index 4b071a7..7ef0b34 100644 --- a/public-legacy/forum/post.php +++ b/public-legacy/forum/post.php @@ -137,6 +137,6 @@ switch($postMode) { break; default: // function as an alt for topic.php?p= by default - Tools::redirect($urls->format('forum-post', ['post' => $postInfo->getId()]); + Tools::redirect($urls->format('forum-post', ['post' => $postInfo->getId()])); break; }