diff options
author | Thomas Lange <code@nerdmind.de> | 2017-04-30 19:06:11 +0200 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2017-04-30 19:06:11 +0200 |
commit | 37bb37f5a96dffa898b341c5ecf1231f1874fef1 (patch) | |
tree | 101e1af73f4c028e2c1a256466446cd01f07e5c5 /template/admin/html/user | |
parent | 22477a3bfb3f31e2f52775cf298628405e1ff899 (diff) | |
download | blog-37bb37f5a96dffa898b341c5ecf1231f1874fef1.tar.gz blog-37bb37f5a96dffa898b341c5ecf1231f1874fef1.tar.xz blog-37bb37f5a96dffa898b341c5ecf1231f1874fef1.zip |
The date of publication is now displayed in the lists.
Diffstat (limited to 'template/admin/html/user')
-rw-r--r-- | template/admin/html/user/item.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/template/admin/html/user/item.php b/template/admin/html/user/item.php index 13ba4ae..439916e 100644 --- a/template/admin/html/user/item.php +++ b/template/admin/html/user/item.php @@ -1,6 +1,9 @@ <li class="item-list-li user"> <header> <h2><i class="fa fa-user"></i><?=escapeHTML($USER['ATTR']['FULLNAME'])?><span>#<?=$USER['ID']?></span></h2> + <div> + <time class="brackets" datetime="<?=$USER['ATTR']['TIME_INSERT']?>"><?=parseDatetime($USER['ATTR']['TIME_INSERT'], $Language->template('date_format'))?></time> + </div> </header> <blockquote cite="<?=$USER['URL']?>"> <p><?=excerpt($USER['BODY']['HTML'])?></p> |