master
BodgeMaster 2021-09-07 07:59:04 +02:00
parent 6d4222c06b
commit 37f14809f1
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ foreach($statement->fetchAll() as $ROW) {
// if this is a reply, build reference
$reply_to = $ROW['reply_to'];
if ($reply_to > -1) {
$reply_reference = "<p class=\"post_reply\" >This is a reply to <a href=./?id=$_GET['id']#$reply_to >this</a> message.</p>";
$reply_reference = "<p class=\"post_reply\" >This is a reply to <a href=./?id=" . $_GET['id'] . "#$reply_to >this</a> message.</p>";
} else {
$reply_reference = "";
}