码迷,mamicode.com
首页 > 其他好文 > 详细

织梦dedecms 用交叉栏目时arclist标签调用不出内容文章的问题(纯转载)

时间:2015-09-21 11:59:05      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:

本文转自:http://www.cnblogs.com/cnteam/articles/4056702.html

 

最近用了交叉栏目
发现
当为手动指定交叉栏目ID时用arclist标签不能调出相关文章
最后发现是
arclist标签有问题
要修改的地方是:
include/taglib/arclist.lib.php
第167行

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

改为

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

再修改第184行

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

改为:

if($arr[‘crossid‘]!=‘‘) $selquery = "Select id,topid From `#@__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 始终为空

织梦dedecms 用交叉栏目时arclist标签调用不出内容文章的问题(纯转载)

标签:

原文地址:http://www.cnblogs.com/dream-w/p/4825550.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!