aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/note
diff options
context:
space:
mode:
authorwinter2025-05-04 18:47:22 +0100
committerwinter2025-05-04 18:47:22 +0100
commit8b4bac25d588720f88d178cfd71fc8a8361e2ff5 (patch)
tree0a30150a07958740b2bb240d4fccb081607943b7 /templates/note
parent2f3377290a9478aff1c43558167fe8566787bc3a (diff)
fix interacting with notes from instances with no instance metadata
Diffstat (limited to 'templates/note')
-rw-r--r--templates/note/interaction_button.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/note/interaction_button.php b/templates/note/interaction_button.php
index bfcbd85..1410b30 100644
--- a/templates/note/interaction_button.php
+++ b/templates/note/interaction_button.php
@@ -1,6 +1,6 @@
<?php
$active = $active ?? false;
-$forbidden = $disabled ? '.forbidden' : '';
+$forbidden = ($disabled ?? false) ? '.forbidden' : '';
$tooltip = match ($action) {
'like' => __("note.action.like$forbidden"),
'dislike' => __("note.action.dislike$forbidden"),