dedecms织梦模板生成栏目列表后前台访问空白的解决
打开 includearc.listview.class.php 找到
查看源码打印代码帮助
$this->CountRecord();
改成
1
if(empty($this->TotalResult)) $this->CountRecord();
查看源码打印代码帮助
$this->CountRecord();
改成
1
if(empty($this->TotalResult)) $this->CountRecord();