From d020e6d60008f9804ec2e9e2951b054dd0be870e Mon Sep 17 00:00:00 2001 From: Lucas T <83518257+luqaska@users.noreply.github.com> Date: Sat, 18 Sep 2021 10:48:19 -0300 Subject: [PATCH] Update picoblog.php --- includes/picoblog.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/picoblog.php b/includes/picoblog.php index 9412bbf..e9b5f8a 100644 --- a/includes/picoblog.php +++ b/includes/picoblog.php @@ -206,9 +206,9 @@ class PicoBlog $date = $entry['date']; $date_p = date("M j, Y", strtotime($entry['date'])); if($show!=true){ - $text = "

{$nick}{$date_p}

" . $text . "
"; + $text = "

{$nick}{$date_p}

" . $text . "
"; } else { - $text = "

{$nick}{$date_p}#{$id}

" . $text . "

"; + $text = "

{$nick}{$date_p}#{$id}

" . $text . "

"; } $html .= str_replace('{entry}', $text, $entryWrap); }