diff options
| author | Marc Alexander <admin@m-a-styles.de> | 2019-09-21 14:17:15 +0200 |
|---|---|---|
| committer | Marc Alexander <admin@m-a-styles.de> | 2019-09-21 14:17:15 +0200 |
| commit | fcff80783464a065ca454976730d13d85caabbb8 (patch) | |
| tree | 5feab3bdc4c1361156713cee40e86d31846aa4c4 /phpBB/search.php | |
| parent | 281049eafd5b555008cb999b45292b0039e642bb (diff) | |
| parent | 84decb287599f4335e7c0511e9fde3a8f548ff00 (diff) | |
| download | forums-fcff80783464a065ca454976730d13d85caabbb8.tar forums-fcff80783464a065ca454976730d13d85caabbb8.tar.gz forums-fcff80783464a065ca454976730d13d85caabbb8.tar.bz2 forums-fcff80783464a065ca454976730d13d85caabbb8.tar.xz forums-fcff80783464a065ca454976730d13d85caabbb8.zip | |
Merge branch '3.2.x' into 3.3.x
Diffstat (limited to 'phpBB/search.php')
| -rw-r--r-- | phpBB/search.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/phpBB/search.php b/phpBB/search.php index 4f4a14109b..8dde46f999 100644 --- a/phpBB/search.php +++ b/phpBB/search.php @@ -1103,9 +1103,12 @@ if ($keywords || $author || $author_id || $search_id || $submit) 'TOPIC_AUTHOR_COLOUR' => get_username_string('colour', $row['topic_poster'], $row['topic_first_poster_name'], $row['topic_first_poster_colour']), 'TOPIC_AUTHOR_FULL' => get_username_string('full', $row['topic_poster'], $row['topic_first_poster_name'], $row['topic_first_poster_colour']), 'FIRST_POST_TIME' => $user->format_date($row['topic_time']), + 'FIRST_POST_TIME_RFC3339' => gmdate(DATE_RFC3339, $row['topic_time']), 'LAST_POST_SUBJECT' => $row['topic_last_post_subject'], 'LAST_POST_TIME' => $user->format_date($row['topic_last_post_time']), + 'LAST_POST_TIME_RFC3339' => gmdate(DATE_RFC3339, $row['topic_last_post_time']), 'LAST_VIEW_TIME' => $user->format_date($row['topic_last_view_time']), + 'LAST_VIEW_TIME_RFC3339' => gmdate(DATE_RFC3339, $row['topic_last_view_time']), 'LAST_POST_AUTHOR' => get_username_string('username', $row['topic_last_poster_id'], $row['topic_last_poster_name'], $row['topic_last_poster_colour']), 'LAST_POST_AUTHOR_COLOUR' => get_username_string('colour', $row['topic_last_poster_id'], $row['topic_last_poster_name'], $row['topic_last_poster_colour']), 'LAST_POST_AUTHOR_FULL' => get_username_string('full', $row['topic_last_poster_id'], $row['topic_last_poster_name'], $row['topic_last_poster_colour']), |
