|
|
板塊里熱門帖無法翻頁,是bug還是故意這樣做的..
1 貢獻(xiàn)最佳答案
修復(fù)版塊熱門帖分頁鏈接錯誤的BUG
https://gitee.com/Discuz/DiscuzX/pulls/1718
打開 source/module/forum/forum_forumdisplay.php
找到 - $filterfield = array('digest', 'recommend', 'sortall', 'typeid', 'sortid', 'dateline', 'page', 'orderby', 'specialtype', 'author', 'view', 'reply', 'lastpost', 'hot');
復(fù)制代碼
修改為 - $filterfield = array('digest', 'recommend', 'sortall', 'typeid', 'sortid', 'dateline', 'page', 'orderby', 'specialtype', 'author', 'view', 'reply', 'lastpost', 'heat', 'hot');
復(fù)制代碼
|
|