summaryrefslogtreecommitdiff
path: root/src/application/actions/viewtopic
diff options
context:
space:
mode:
authorJonas Kohl2024-10-11 14:44:38 +0200
committerJonas Kohl2024-10-11 14:44:38 +0200
commit023788b93d8c2eb6f5128c09f74aeccb9144b74e (patch)
tree8e94d4df34ebcef79cfc958ab30cdfd8f0b0a10b /src/application/actions/viewtopic
parent307b61ad625956e478c16f406061c9751baa928a (diff)
Change from exceptions to error pages
Diffstat (limited to 'src/application/actions/viewtopic')
-rw-r--r--src/application/actions/viewtopic/_common.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/application/actions/viewtopic/_common.php b/src/application/actions/viewtopic/_common.php
index b257237..080cd97 100644
--- a/src/application/actions/viewtopic/_common.php
+++ b/src/application/actions/viewtopic/_common.php
@@ -3,7 +3,11 @@
use mystic\forum\orm\Topic;
$formId = "addpost";
-$topicId = $_GET["topic"] ?? throw new Exception(__("Missing topic id"));
+$topicId = $_GET["topic"] ?? call_user_func(function() {
+ http_response_code(400);
+ msg_error(__("Missing topic id"));
+ exit;
+});
$topic = new Topic();
$topic->id = $topicId;
if (!$db->fetch($topic)) {