diff options
Diffstat (limited to 'forum/utils/posts.php')
-rw-r--r-- | forum/utils/posts.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/forum/utils/posts.php b/forum/utils/posts.php index c301852..209d316 100644 --- a/forum/utils/posts.php +++ b/forum/utils/posts.php @@ -69,7 +69,7 @@ class Post { if(!$client_is_mobile_device) echo "Date: "; echo date("j. M Y - G:i", $this->date) . "</div>\n"; echo $indent . " <div class=\"message\">\n"; - echo parse($this->message, $indent . " ") . "\n"; + echo parse($this->message . "\n------\n" . $user->signature, $indent . " ") . "\n"; echo $indent . " </div>\n"; echo $indent . " <div class=\"buttons\">\n"; |