织梦dedecms用栏目交叉时arclist标签不能调出相关文章

,打开 include/taglib/arclist.lib.php 文件

找到

if($ctag->GetAtt('cross')=='1')

修改为

if($ctag->GetAtt('cross')!='0')

找到

if($arr['crossid']!='') $selquery = "Select id,topid From `dede_arctype` where id in('{$arr['crossid']}') And id<>'{$typeid}' And topid<>'{$typeid}'  ";

修改为

if($arr['crossid']!='') $selquery = "Select id,topid From `dede_arctype` where id in({$arr['crossid']}) And id<>'{$typeid}' And topid<>'{$typeid}'  ";



分析:

从数据库可以看出

当栏目为不交叉时cross的值为0

当栏目为自动获取同名栏目时cross的值为1

当栏目为手动指定ID时cross的值为2

显然

if($ctag->GetAtt('cross')=='1')

是错的,在手动指定ID时$CrossID 始终为空 。(
返回顶部
跳到底部

Copyright 2011-2024 南京追名网络科技有限公司 苏ICP备2023031119号-6 乌徒帮 All Rights Reserved Powered by Z-BlogPHP Theme By open开发

请先 登录 再评论,若不是会员请先 注册