From fa7c6d1533b2367947307949968d2bd11b170ad1 Mon Sep 17 00:00:00 2001 From: posweg Date: Sun, 16 Aug 2020 11:20:18 +0000 Subject: [PATCH] Fix date and post link preparation --- user.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/user.php b/user.php index 152eb0f..61d448c 100644 --- a/user.php +++ b/user.php @@ -86,13 +86,15 @@ if(isset($_SESSION["uid"])){ // Time $time->settimestamp($current["q_date"]); - echo("

" . $time->format("y-m-d h:i:s") . "

"); + echo(''); + echo("

" . $time->format("Y-m-d h:i:s") . "

"); + echo("
"); if($current["answer"]){ echo("
"); echo("

" . $current["answer"] . "

"); $time->settimestamp($current["a_date"]); - echo("

" . $time->format("y-m-d h:i:s") . "

"); + echo("

" . $time->format("Y-m-d h:i:s") . "

"); echo("
"); } echo("\n\n");