无限星辰工作室-客户无限互联网动力之源

标题: Discuz! Database Error(1064) forum_filter_post 表limit -1错误的解决办法 [打印本页]

作者: crx349    时间: 2013-8-22 09:11
标题: Discuz! Database Error(1064) forum_filter_post 表limit -1错误的解决办法
(, 下载次数: 829)
原因分析:
$remainhots = $remainhots - count($hotpids);
$remainhots 可能为负,
DZ代码 if($remainhots) 后直接用于 limit $remainhots,所以出现了limit -1错误(当然不一定是-1,数字不是固定的)


解决办法:
打开:source\module\forum\forum_viewthread.php

找到
  1. if($_G['setting']['nofilteredpost'] && $_G['forum_thread']['replies'] > $_G['setting']['postperpage'] && $remainhots) {
复制代码
修改为
  1. if($_G['setting']['nofilteredpost'] && $_G['forum_thread']['replies'] > $_G['setting']['postperpage'] && $remainhots >0) {
复制代码
也就是将 $remainhots 改为 $remainhots >0




欢迎光临 无限星辰工作室-客户无限互联网动力之源 (https://xmspace.net/) Powered by Discuz! X3.4