diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2009-04-17 13:19:29 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2009-04-17 13:19:29 +0000 |
commit | cee46c7941b63c773df7caa501baa5789eafd7af (patch) | |
tree | 43feec79e87df4d4b6abbc8066cdd13a0796c183 | |
parent | 83ed73c9b4f0fc1313d239792426f80bc1690887 (diff) | |
download | forums-cee46c7941b63c773df7caa501baa5789eafd7af.tar forums-cee46c7941b63c773df7caa501baa5789eafd7af.tar.gz forums-cee46c7941b63c773df7caa501baa5789eafd7af.tar.bz2 forums-cee46c7941b63c773df7caa501baa5789eafd7af.tar.xz forums-cee46c7941b63c773df7caa501baa5789eafd7af.zip |
force non-relative date for pm forwards (thanks chris. :))
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9456 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r-- | phpBB/includes/ucp/ucp_pm_compose.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/ucp/ucp_pm_compose.php b/phpBB/includes/ucp/ucp_pm_compose.php index 20eeef3c5a..e9e3141bd6 100644 --- a/phpBB/includes/ucp/ucp_pm_compose.php +++ b/phpBB/includes/ucp/ucp_pm_compose.php @@ -850,7 +850,7 @@ function compose_pm($id, $mode, $action) $forward_text = array(); $forward_text[] = $user->lang['FWD_ORIGINAL_MESSAGE']; $forward_text[] = sprintf($user->lang['FWD_SUBJECT'], censor_text($message_subject)); - $forward_text[] = sprintf($user->lang['FWD_DATE'], $user->format_date($message_time)); + $forward_text[] = sprintf($user->lang['FWD_DATE'], $user->format_date($message_time, false, true)); $forward_text[] = sprintf($user->lang['FWD_FROM'], $quote_username_text); $forward_text[] = sprintf($user->lang['FWD_TO'], implode(', ', $fwd_to_field['to'])); |