diff options
author | Freya Murphy <freya@freyacat.org> | 2024-05-28 21:03:16 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2024-05-28 21:03:16 -0400 |
commit | 268dfc987664416db099761d51a5c007eb926904 (patch) | |
tree | 8272ea615092a412d9da567e70e9468027219c8c /src/web/_views/template/post.php | |
parent | e (diff) | |
download | xssbook2-268dfc987664416db099761d51a5c007eb926904.tar.gz xssbook2-268dfc987664416db099761d51a5c007eb926904.tar.bz2 xssbook2-268dfc987664416db099761d51a5c007eb926904.zip |
fix date
Diffstat (limited to '')
-rw-r--r-- | src/web/_views/template/post.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/_views/template/post.php b/src/web/_views/template/post.php index 3dcae8f..b8ea69a 100644 --- a/src/web/_views/template/post.php +++ b/src/web/_views/template/post.php @@ -5,7 +5,7 @@ <?=pfp($user)?> <div class="col ml"> <strong><?=$user['first_name'] . ' ' . $user['last_name']?></strong> - <span class="dim"><?=$post['created']?></span> + <span class="dim"><?=$this->main->date($post['created'])?></span> </div> </div> <p> |