aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/thread_page.php
diff options
context:
space:
mode:
authorwinter2025-03-15 18:53:29 +0000
committerwinter2025-03-15 18:53:29 +0000
commite0588a6113ff6b3c1000fa6c82629f81fb5e05b5 (patch)
treeef6beb046a7dcc7542b88f0962d4e5e264895b7a /templates/thread_page.php
parent61b122e88cc6783b4d0cf5142a22002f8e558c60 (diff)
[refactor] move some templates to subdirs
Diffstat (limited to 'templates/thread_page.php')
-rw-r--r--templates/thread_page.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/thread_page.php b/templates/thread_page.php
index 5237f6c..ac2e640 100644
--- a/templates/thread_page.php
+++ b/templates/thread_page.php
@@ -17,7 +17,7 @@ call_template('skeleton', [
$user = UserAccount::findByCurrentSession();
foreach ($notes as $n) {
if (!($user != null && $user->actor->blocks($n->author)) && $n->isViewableBy($user)) {
- call_template('note', ['note' => $n, 'selected' => $n == $targetNote]);
+ call_template('note/note', ['note' => $n, 'selected' => $n == $targetNote]);
}
}
}); \ No newline at end of file