|
From: FlorinCB <ory...@us...> - 2008-07-08 21:43:55
|
Update of /cvsroot/mxbb/mx_music/music_box/modules In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv30227 Modified Files: music_comment.php Log Message: fix Index: music_comment.php =================================================================== RCS file: /cvsroot/mxbb/mx_music/music_box/modules/music_comment.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** music_comment.php 29 Jan 2008 07:51:05 -0000 1.2 --- music_comment.php 8 Jul 2008 21:43:50 -0000 1.3 *************** *** 285,297 **** $lastedit_row = $db->sql_fetchrow($result); ! $comment_edit_time = (@function_exists( 'create_date' )) ? create_date($board_config['default_dateformat'], $commentrow[$i]['comment_edit_time'], $board_config['board_timezone']), $commentrow[$i]['comment_edit_count']) : phpBB2::create_date($board_config['default_dateformat'], $commentrow[$i]['comment_edit_time'], $board_config['board_timezone']), $commentrow[$i]['comment_edit_count']); $edit_info = ($commentrow[$i]['comment_edit_count'] == 1) ? $lang['Edited_time_total'] : $lang['Edited_times_total']; ! $edit_info = '<br /><br />» '. sprintf($edit_info, $lastedit_row['username'], $comment_edit_time .'<br />'; } else { ! $edit_info = ''; } --- 285,297 ---- $lastedit_row = $db->sql_fetchrow($result); ! $comment_edit_time = (@function_exists('create_date')) ? create_date($board_config['default_dateformat'], $commentrow[$i]['comment_edit_time'], $board_config['board_timezone']) : phpBB2::create_date($board_config['default_dateformat'], $commentrow[$i]['comment_edit_time'], $board_config['board_timezone']); $edit_info = ($commentrow[$i]['comment_edit_count'] == 1) ? $lang['Edited_time_total'] : $lang['Edited_times_total']; ! $edit_info = "<br /><br />» ". sprintf($edit_info, $lastedit_row['username'], $comment_edit_time) ."<br />"; } else { ! $edit_info = ""; } |