|
From: FlorinCB <ory...@us...> - 2008-07-08 21:44:19
|
Update of /cvsroot/mxbb/mx_music/music_box/modules In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv30629 Modified Files: Tag: core28x 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.1.2.4 retrieving revision 1.1.2.5 diff -C2 -d -r1.1.2.4 -r1.1.2.5 *** music_comment.php 13 Mar 2008 10:35:01 -0000 1.1.2.4 --- music_comment.php 8 Jul 2008 21:44:16 -0000 1.1.2.5 *************** *** 285,293 **** $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 --- 285,293 ---- $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 |