Skip to content

Commit 1cde7ae

Browse files
committed
Fix bug when a valid id is '0'
1 parent 65c6c1a commit 1cde7ae

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/templates/Comment/Section.inc.phtml

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ $c_delete_visible_admin = ($active_user && ($active_user->getOptionsBitmask() &
2828
$c_user_string = ($c_user ? sprintf('<a href="%s"><img class="rounded" src="%s"/> %s</a>', $c_user_url, $c_user_avatar, $c_user_name) : $c_user_name);
2929
$c_time_string = sprintf('<time class="small text-muted" datetime="%s">%s</time>', $c_created_dt->format('c'), $c_created_dt->format('D M j, Y g:ia T'));
3030

31-
$c_edit_visible = ($c_user_id == $active_user_id || $c_edit_visible_admin);
32-
$c_delete_visible = ($c_user_id == $active_user_id || $c_delete_visible_admin);
31+
$c_edit_visible = ($c_user_id === $active_user_id || $c_edit_visible_admin);
32+
$c_delete_visible = ($c_user_id === $active_user_id || $c_delete_visible_admin);
3333

3434
$c_content = (
3535
($c_delete_visible ? '<a class="btn btn-sm btn-danger float-right m-1" href="' . Common::relativeUrlToAbsolute('/comment/delete?id=' . $c_id) . '" title="Delete">❌</a>' : '') .

0 commit comments

Comments
 (0)