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

phpBB 2 Style Support
討論的範圍包含版面排列、樣式、配置;外掛問題,請到相關版面依發問格式發表!
(發表文章請按照公告格式發表,違者砍文)

版主: 版主管理群

主題已鎖定
頭像
faithdata
星球公民
星球公民
文章: 37
註冊時間: 2005-02-01 16:52

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

文章 faithdata »

請問

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

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

.....請賜教
Mac
百戰天龍馬蓋先
百戰天龍馬蓋先
文章: 2590
註冊時間: 2003-02-02 02:28
來自: MacphpBBMOD
聯繫:

文章 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
+ 關於 phpBB 使用問題請在版面發問,私人訊息提供其他不相干或是隱私的事情聯絡之用。

phpBB 官網 | 竹貓星球 | MacphpBBMOD | 我的服務
主題已鎖定

回到「風格問題討論」