diff options
Diffstat (limited to 'includes/model/Post.php')
-rwxr-xr-x | includes/model/Post.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/model/Post.php b/includes/model/Post.php index f251773..7e02793 100755 --- a/includes/model/Post.php +++ b/includes/model/Post.php @@ -17,7 +17,7 @@ function create_quote(int $id): string return '<blockquote><span style="color:red;">This post has been deleted</span></blockquote>';
}
- return '<blockquote><a href="/viewthread.php?id=' . $reply['post_thread'] . '#p' . $id . '">Quote from ' . $reply['user_name'] . '</a><br>' . $reply['post_content'] . '</blockquote>';
+ return '<blockquote><a href="viewthread.php?id=' . $reply['post_thread'] . '#p' . $id . '">Quote from ' . $reply['user_name'] . '</a><br>' . $reply['post_content'] . '</blockquote>';
}
function format_post_content(string $post_content)
|