請問
討論版表單都是以 最後發表 時間與人 顯示
如何改成 發表人的時間就好呢\r
.....請賜教
[問題]如何更改最後發表時間問題請教
版主: 版主管理群
試試看
lang_main.php
雖然以下是英文版的,但中文的改法也一樣,把有關顯示人名的部分刪掉
變成
viewtopic.php
然後把 ", $poster" 刪掉
變成
~Mac
lang_main.php
雖然以下是英文版的,但中文的改法也一樣,把有關顯示人名的部分刪掉
代碼: 選擇全部
$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然後把 ", $poster" 刪掉
代碼: 選擇全部
$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']);
