Skip to content

Commit bba151d

Browse files
authored
Merge pull request #11061 from nanaya/post-raw-trashed
Check topic state for post raw endpoint
2 parents c805470 + fe2eef7 commit bba151d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

app/Http/Controllers/Forum/PostsController.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -143,14 +143,14 @@ public function raw($id)
143143
{
144144
$post = Post::withTrashed()->findOrFail($id);
145145

146-
if ($post->trashed()) {
147-
priv_check('ForumModerate', $post->forum)->ensureCan();
148-
}
149-
150146
if ($post->forum === null || $post->topic === null) {
151147
abort(404);
152148
}
153149

150+
if ($post->trashed() || $post->topic->trashed()) {
151+
priv_check('ForumModerate', $post->forum)->ensureCan();
152+
}
153+
154154
priv_check('ForumView', $post->forum)->ensureCan();
155155

156156
$text = $post->bodyRaw;

0 commit comments

Comments
 (0)