From db730ccd4c102badb48e6752de829c436042e5e6 Mon Sep 17 00:00:00 2001 From: cflip <36554078+cflip@users.noreply.github.com> Date: Tue, 10 Aug 2021 16:47:28 -0600 Subject: Small style update --- includes/model/Post.php | 4 ++-- styles/style.css | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 35 insertions(+), 2 deletions(-) diff --git a/includes/model/Post.php b/includes/model/Post.php index 7e02793..eae3d3e 100755 --- a/includes/model/Post.php +++ b/includes/model/Post.php @@ -89,13 +89,13 @@ class Post function get_content(): string { // Build the header - $result = '
#' . $this->id . ''; $result .= ' Posted by ' . $this->author->name . ''; $result .= ' on ' . date('m/d/Y g:ia', strtotime($this->date_created)); if (Session::get()->is_signed_in() && Session::get()->get_current_user()->level == USER_LEVEL_MODERATOR) { $result .= '[Options]'; } - $result .= '