[問題]如何更改最後發表時間問題請教
發表於 : 2006-01-15 00:27
請問
討論版表單都是以 最後發表 時間與人 顯示
如何改成 發表人的時間就好呢\r
.....請賜教
討論版表單都是以 最後發表 時間與人 顯示
如何改成 發表人的時間就好呢\r
.....請賜教
代碼: 選擇全部
$lang['Edited_time_total'] = 'Last edited by %s on %s; edited %d time in total'; // Last edited by me on 12 Oct 2001; edited 1 time in total
$lang['Edited_times_total'] = 'Last edited by %s on %s; edited %d times in total'; // Last edited by me on 12 Oct 2001; edited 2 times in total代碼: 選擇全部
$lang['Edited_time_total'] = 'Last edited on %s; edited %d time in total'; // Last edited by me on 12 Oct 2001; edited 1 time in total
$lang['Edited_times_total'] = 'Last edited on %s; edited %d times in total'; // Last edited by me on 12 Oct 2001; edited 2 times in total代碼: 選擇全部
$l_edited_by = '<br /><br />' . sprintf($l_edit_time_total, $poster, create_date($board_config['default_dateformat'], $postrow[$i]['post_edit_time'], $board_config['board_timezone']), $postrow[$i]['post_edit_count']);代碼: 選擇全部
$l_edited_by = '<br /><br />' . sprintf($l_edit_time_total, create_date($board_config['default_dateformat'], $postrow[$i]['post_edit_time'], $board_config['board_timezone']), $postrow[$i]['post_edit_count']);