|
From: Jonathan H. <the...@us...> - 2001-11-02 22:35:34
|
Update of /cvsroot/phpbb/phpBB2
In directory usw-pr-cvs1:/tmp/cvs-serv29039
Modified Files:
viewonline.php privmsg.php
Log Message:
Fix for typo's in create_date statements...
Index: viewonline.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/viewonline.php,v
retrieving revision 1.32
retrieving revision 1.33
diff -C2 -r1.32 -r1.33
*** viewonline.php 2001/09/07 12:32:46 1.32
--- viewonline.php 2001/11/02 22:35:31 1.33
***************
*** 200,204 ****
"ROW_CLASS" => $row_class,
"USERNAME" => $username,
! "LASTUPDATE" => create_date($board_config['default_dateformat'], $onlinerow_reg[$i]['session_time'], $board_config['default__timezone']),
"LOCATION" => $location,
--- 200,204 ----
"ROW_CLASS" => $row_class,
"USERNAME" => $username,
! "LASTUPDATE" => create_date($board_config['default_dateformat'], $onlinerow_reg[$i]['session_time'], $board_config['board_timezone']),
"LOCATION" => $location,
***************
*** 323,325 ****
include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
! ?>
\ No newline at end of file
--- 323,325 ----
include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
! ?>
Index: privmsg.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/privmsg.php,v
retrieving revision 1.37
retrieving revision 1.38
diff -C2 -r1.37 -r1.38
*** privmsg.php 2001/10/25 23:21:11 1.37
--- privmsg.php 2001/11/02 22:35:31 1.38
***************
*** 377,381 ****
$user_id_to = $privmsg['user_id_2'];
! $post_date = create_date($board_config['default_dateformat'], $privmsg['privmsgs_date'], $board_config['default_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>";
--- 377,381 ----
$user_id_to = $privmsg['user_id_2'];
! $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>";
***************
*** 1834,1836 ****
include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
! ?>
\ No newline at end of file
--- 1834,1836 ----
include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
! ?>
|