[9.2.13] format de date dans blog

This commit is contained in:
fredtempez 2019-12-03 18:19:34 +01:00
parent d26f8a38ba
commit 72240c810d
2 changed files with 3 additions and 4 deletions

View File

@ -111,8 +111,7 @@ class blog extends common {
// Met en forme le tableau
$comment = $comments[$commentIds[$i]];
self::$comments[] = [
//date('d/m/Y H:i', $comment['createdOn']),
strftime('%d %B %Y à %H:%M', $comment['createdOn']),
utf8_encode(strftime('%d %B %Y - %H:%M', $comment['createdOn'])),
$comment['content'],
$comment['userId'] ? $this->getData(['user', $comment['userId'], 'firstname']) . ' ' . $this->getData(['user', $comment['userId'], 'lastname']) : $comment['author'],
template::button('blogCommentDelete' . $commentIds[$i], [

View File

@ -95,7 +95,7 @@
<?php else: ?>
<?php echo $comment['author']; ?>
<?php endif; ?>
le <?php echo strftime('%d %B %Y à %H:%M', $comment['createdOn']); ?>
le <?php echo utf8_encode(strftime('%d %B %Y - %H:%M', $comment['createdOn'])); ?>
</h4>
<?php echo $comment['content']; ?>
</div>