- 積分
- 3569
- 金幣
- 351 個
- 社區(qū)幣
- 0 元
功行圓滿
- 貢獻(xiàn)
- 23 點(diǎn)
- 金幣
- 351 個
|
需要修改兩個文件:
source/language/lang_blockclass.php
source/class/block/forum/block_thread.php
一、source/language/lang_blockclass.php
查找:
- 'blockclass_thread_field_lastpost' => '最后回復(fù)時間',
復(fù)制代碼
在其后添加:
- 'blockclass_thread_field_lastposter' => '最后回復(fù)者',
復(fù)制代碼
二、source/class/block/forum/block_thread.php
1、查找:
- 'lastpost' => array('name' => lang('blockclass', 'blockclass_thread_field_lastpost'),
復(fù)制代碼
在其后添加:
- 'lastposter' => array('name' => lang('blockclass', 'blockclass_thread_field_author'), 'formtype' => 'text', 'datatype' => 'string'),
復(fù)制代碼
2、查找:
- 'lastpost' => $data['lastpost'],
復(fù)制代碼
在其后添加:
- 'lastposter' => $data['lastposter'],
復(fù)制代碼
最后,更新DIY緩存 |
|