diff options
| author | the_systech <the_systech@users.sourceforge.net> | 2001-11-02 22:35:31 +0000 |
|---|---|---|
| committer | the_systech <the_systech@users.sourceforge.net> | 2001-11-02 22:35:31 +0000 |
| commit | 43eac6665bedd62e436c0a0a943f4209024c679e (patch) | |
| tree | e044f2cea2cda01b19b5ad032e059ad80e72f514 /phpBB/privmsg.php | |
| parent | 112b015c47347d068057f257806774c0e3cf90a8 (diff) | |
| download | forums-43eac6665bedd62e436c0a0a943f4209024c679e.tar forums-43eac6665bedd62e436c0a0a943f4209024c679e.tar.gz forums-43eac6665bedd62e436c0a0a943f4209024c679e.tar.bz2 forums-43eac6665bedd62e436c0a0a943f4209024c679e.tar.xz forums-43eac6665bedd62e436c0a0a943f4209024c679e.zip | |
Fix for typo's in create_date statements...
git-svn-id: file:///svn/phpbb/trunk@1257 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/privmsg.php')
| -rw-r--r-- | phpBB/privmsg.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/privmsg.php b/phpBB/privmsg.php index cd204521e0..2e861d9e1d 100644 --- a/phpBB/privmsg.php +++ b/phpBB/privmsg.php @@ -376,7 +376,7 @@ if( $mode == "read" ) $username_to = $privmsg['username_2']; $user_id_to = $privmsg['user_id_2']; - $post_date = create_date($board_config['default_dateformat'], $privmsg['privmsgs_date'], $board_config['default_timezone']); + $post_date = create_date($board_config['default_dateformat'], $privmsg['privmsgs_date'], $board_config['board_timezone']); $profile_img = "<a href=\"" . append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . "=$user_id_from") . "\"><img src=\"" . $images['icon_profile'] . "\" alt=\"" . $lang['Read_profile'] . " $username_from\" border=\"0\" /></a>"; @@ -1833,4 +1833,4 @@ $template->pparse("body"); include($phpbb_root_path . 'includes/page_tail.'.$phpEx); -?>
\ No newline at end of file +?> |
