From 5404af2d29c98435b657dfc706539d1e9e866301 Mon Sep 17 00:00:00 2001 From: Meik Sievertsen Date: Fri, 10 Apr 2009 10:21:49 +0000 Subject: [PATCH] Force full date on print view (Bug #40355) git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9435 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/viewtopic.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/viewtopic.php b/phpBB/viewtopic.php index 019a1121a0..b76f6c5e88 100644 --- a/phpBB/viewtopic.php +++ b/phpBB/viewtopic.php @@ -1424,7 +1424,7 @@ for ($i = 0, $end = sizeof($post_list); $i < $end; ++$i) 'POSTER_WARNINGS' => $user_cache[$poster_id]['warnings'], 'POSTER_AGE' => $user_cache[$poster_id]['age'], - 'POST_DATE' => $user->format_date($row['post_time']), + 'POST_DATE' => $user->format_date($row['post_time'], false, ($view == 'print') ? true : false), 'POST_SUBJECT' => $row['post_subject'], 'MESSAGE' => $message, 'SIGNATURE' => ($row['enable_sig']) ? $user_cache[$poster_id]['sig'] : '',