dede后台删除文章后台还有分页显示解决方法
打开dede目录中content_list.php
大概在100行左右
$sql = “SELECT COUNT(*) AS dd FROM `dede_arctiny` $tinyQuery “;
$cachekey = md5($sql);
$arr = GetCache(‘listcache’, $cachekey);
if (empty($arr))
{
$arr = $dsql->GetOne($sql);
SetCache(‘listcache’, $cachekey, $arr);
}
$totalresult = $arr[‘dd’];
将上面代码替换为
$arr = $dsql->GetOne(“Select count(*) as dd From `zmb_arctiny` $tinyQuery “);
☉免责声明:本站所有模板均来自用户分享和网络收集,仅供学习与参考,请勿用于商业用途,如果损害了您的权利,请联系网站客服,我们核实后会立即删除。
☉本站提供的源码、模板、软件工具等其他资源,都不包含技术服务,请大家谅解!
pbootcms模板网 » dede后台删除文章后台还有分页显示解决方法
☉本站提供的源码、模板、软件工具等其他资源,都不包含技术服务,请大家谅解!
pbootcms模板网 » dede后台删除文章后台还有分页显示解决方法