summaryrefslogtreecommitdiff
path: root/src/application/actions/viewtopic/_common.php
diff options
context:
space:
mode:
authorJonas Kohl2024-10-11 14:42:25 +0200
committerJonas Kohl2024-10-11 14:42:25 +0200
commit307b61ad625956e478c16f406061c9751baa928a (patch)
treed6a634bc05f7b94d79003d174c3fda1fb1ce5c56 /src/application/actions/viewtopic/_common.php
parented228805999e0103297ddc41a0304f0845cb6800 (diff)
i18n fixes
Diffstat (limited to 'src/application/actions/viewtopic/_common.php')
-rw-r--r--src/application/actions/viewtopic/_common.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/application/actions/viewtopic/_common.php b/src/application/actions/viewtopic/_common.php
index 7f249bb..b257237 100644
--- a/src/application/actions/viewtopic/_common.php
+++ b/src/application/actions/viewtopic/_common.php
@@ -3,11 +3,11 @@
use mystic\forum\orm\Topic;
$formId = "addpost";
-$topicId = $_GET["topic"] ?? throw new Exception("Missing topic id");
+$topicId = $_GET["topic"] ?? throw new Exception(__("Missing topic id"));
$topic = new Topic();
$topic->id = $topicId;
if (!$db->fetch($topic)) {
http_response_code(404);
- msg_error("No topic exists with this id");
+ msg_error(__("No topic exists with this id"));
exit;
}