|
From: Paul S. O. <ps...@us...> - 2001-11-18 14:41:04
|
Update of /cvsroot/phpbb/phpBB2 In directory usw-pr-cvs1:/tmp/cvs-serv20490 Modified Files: profile.php viewtopic.php Log Message: More lang cleanups Index: profile.php =================================================================== RCS file: /cvsroot/phpbb/phpBB2/profile.php,v retrieving revision 1.131 retrieving revision 1.132 diff -C2 -r1.131 -r1.132 *** profile.php 2001/11/17 17:51:59 1.131 --- profile.php 2001/11/18 14:40:58 1.132 *************** *** 402,406 **** "L_MESSENGER" => $lang['MSNM'], "L_WEBSITE" => $lang['Website'], ! "L_LOCATION" => $lang['From'], "L_OCCUPATION" => $lang['Occupation'], "L_INTERESTS" => $lang['Interests'], --- 402,406 ---- "L_MESSENGER" => $lang['MSNM'], "L_WEBSITE" => $lang['Website'], ! "L_LOCATION" => $lang['Location'], "L_OCCUPATION" => $lang['Occupation'], "L_INTERESTS" => $lang['Interests'], Index: viewtopic.php =================================================================== RCS file: /cvsroot/phpbb/phpBB2/viewtopic.php,v retrieving revision 1.137 retrieving revision 1.138 diff -C2 -r1.137 -r1.138 *** viewtopic.php 2001/11/16 23:03:12 1.137 --- viewtopic.php 2001/11/18 14:40:58 1.138 *************** *** 699,703 **** $poster_posts = ($postrow[$i]['user_id'] != ANONYMOUS) ? $lang['Posts'] . ": " . $postrow[$i]['user_posts'] : ""; ! $poster_from = ($postrow[$i]['user_from'] && $postrow[$i]['user_id'] != ANONYMOUS) ? $lang['From'] . ": " . $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']) : ""; --- 699,703 ---- $poster_posts = ($postrow[$i]['user_id'] != ANONYMOUS) ? $lang['Posts'] . ": " . $postrow[$i]['user_posts'] : ""; ! $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']) : ""; |