|
From: Paul S. O. <ps...@us...> - 2001-11-27 00:31:02
|
Update of /cvsroot/phpbb/phpBB2 In directory usw-pr-cvs1:/tmp/cvs-serv25354 Modified Files: viewtopic.php memberlist.php Log Message: A 'not quite a Pauls up' + short date format Index: viewtopic.php =================================================================== RCS file: /cvsroot/phpbb/phpBB2/viewtopic.php,v retrieving revision 1.143 retrieving revision 1.144 diff -C2 -r1.143 -r1.144 *** viewtopic.php 2001/11/26 12:09:37 1.143 --- viewtopic.php 2001/11/27 00:30:59 1.144 *************** *** 720,724 **** $poster_from = ($postrow[$i]['user_from'] && $postrow[$i]['user_id'] != ANONYMOUS) ? $lang['Location'] . ": " . $postrow[$i]['user_from'] : ""; ! $poster_joined = ($postrow[$i]['user_id'] != ANONYMOUS) ? $lang['Joined'] . ": " . create_date($board_config['default_dateformat'], $postrow[$i]['user_regdate'], $board_config['board_timezone']) : ""; if( $postrow[$i]['user_avatar_type'] && $poster_id != ANONYMOUS ) --- 720,724 ---- $poster_from = ($postrow[$i]['user_from'] && $postrow[$i]['user_id'] != ANONYMOUS) ? $lang['Location'] . ": " . $postrow[$i]['user_from'] : ""; ! $poster_joined = ($postrow[$i]['user_id'] != ANONYMOUS) ? $lang['Joined'] . ": " . create_date($lang['DATE_FORMAT'], $postrow[$i]['user_regdate'], $board_config['board_timezone']) : ""; if( $postrow[$i]['user_avatar_type'] && $poster_id != ANONYMOUS ) Index: memberlist.php =================================================================== RCS file: /cvsroot/phpbb/phpBB2/memberlist.php,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -r1.25 -r1.26 *** memberlist.php 2001/11/16 17:27:36 1.25 --- memberlist.php 2001/11/27 00:30:59 1.26 *************** *** 173,177 **** $from = (!empty($members[$i]['user_from'])) ? stripslashes($members[$i]['user_from']) : " "; ! $joined = create_date($board_config['default_dateformat'], $members[$i]['user_regdate'], $board_config['board_timezone']); $posts = ($members[$i]['user_posts']) ? $members[$i]['user_posts'] : 0; --- 173,177 ---- $from = (!empty($members[$i]['user_from'])) ? stripslashes($members[$i]['user_from']) : " "; ! $joined = create_date($lang['DATE_FORMAT'], $members[$i]['user_regdate'], $board_config['board_timezone']); $posts = ($members[$i]['user_posts']) ? $members[$i]['user_posts'] : 0; |