為了收錄一些好的文章,
但是PHPBB2本身並無內建精華區的功能,
於是安裝了【i-Commend Mod 1.0.5】這個外掛來將文章收錄到精華區。
但是當開始使用時,沒有辦法將文章收錄,要再做一些小小的修正才可以使用。
原文在此
開啟:
1 | posting.php |
尋找:
1 | $topic_type = ( in_array($topic_type, array(POST_NORMAL, POST_STICKY, POST_ANNOUNCE)) ) ? $topic_type : POST_NORMAL; |
取代為:
1 | $topic_type = ( in_array($topic_type, array(POST_NORMAL, POST_STICKY, POST_ANNOUNCE, POST_COMMEND)) ) ? $topic_type : POST_NORMAL; |
即可已將文章收錄為精華文章。