aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/viewtopic.php
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2019-09-21 14:17:11 +0200
committerMarc Alexander <admin@m-a-styles.de>2019-09-21 14:17:11 +0200
commit84decb287599f4335e7c0511e9fde3a8f548ff00 (patch)
tree6fa8b273a332e4e92e2c6c4c4cef74fd1d19b405 /phpBB/viewtopic.php
parentc9c7df735cd2a8774ec6f90bf63cc5544e2de0a4 (diff)
parent8160a8a1efe06de06a199be5c7e8262e0c199873 (diff)
downloadforums-84decb287599f4335e7c0511e9fde3a8f548ff00.tar
forums-84decb287599f4335e7c0511e9fde3a8f548ff00.tar.gz
forums-84decb287599f4335e7c0511e9fde3a8f548ff00.tar.bz2
forums-84decb287599f4335e7c0511e9fde3a8f548ff00.tar.xz
forums-84decb287599f4335e7c0511e9fde3a8f548ff00.zip
Merge pull request #5692 from stevendegroote/ticket/16159
[ticket/16159] Wrap post times in html time tag
Diffstat (limited to 'phpBB/viewtopic.php')
-rw-r--r--phpBB/viewtopic.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/viewtopic.php b/phpBB/viewtopic.php
index 0c2be8c52e..dadbe9a06c 100644
--- a/phpBB/viewtopic.php
+++ b/phpBB/viewtopic.php
@@ -2044,6 +2044,7 @@ for ($i = 0, $end = count($post_list); $i < $end; ++$i)
'CONTACT_USER' => $user_cache[$poster_id]['contact_user'],
'POST_DATE' => $user->format_date($row['post_time'], false, ($view == 'print') ? true : false),
+ 'POST_DATE_RFC3339' => gmdate(DATE_RFC3339, $row['post_time']),
'POST_SUBJECT' => $row['post_subject'],
'MESSAGE' => $message,
'SIGNATURE' => ($row['enable_sig']) ? $user_cache[$poster_id]['sig'] : '',