From f67c95ccba8e5b17011192a25c10dae72ca3ae00 Mon Sep 17 00:00:00 2001 From: fuzzykitten Date: Sun, 23 Feb 2025 13:12:54 -0500 Subject: [PATCH] added anchor to single messages in threadview --- srv/index.php | 3 ++- srv/mob/index.php | 5 +++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/srv/index.php b/srv/index.php index 8f04419..65f3946 100644 --- a/srv/index.php +++ b/srv/index.php @@ -2037,7 +2037,8 @@ function print_thread($db, $sub, $css, $settings, $org_id) $settings); $id_text = make_id_text($post_id); - $html_string .= "
#$id_text

" + $html_string .= "
#$id_text
" + . "


" . "$post_text


"; } diff --git a/srv/mob/index.php b/srv/mob/index.php index 639d552..8d5f2d3 100644 --- a/srv/mob/index.php +++ b/srv/mob/index.php @@ -1220,8 +1220,9 @@ function print_thread($db, $sub, $settings, $org_id) $settings); $id_text = make_id_text($post_id); - $html_string .= "
#$id_text

" - . "$post_text


"; + $html_string .= "
#$id_text
" + . "


" + . "$post_text


"; } $html_string .= '
';