1 頁 (共 1 頁)

[問題]如何更改最後發表時間問題請教

發表於 : 2006-01-15 00:27
faithdata
請問

討論版表單都是以 最後發表 時間與人 顯示

如何改成 發表人的時間就好呢\r

.....請賜教

發表於 : 2006-01-16 20:17
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
viewtopic.php

然後把 ", $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']);
~Mac