"景先生毕设|www.jxszl.com

织梦自定义图片字段报错Call to a member function GetInnerText()

2022-10-29 16:41编辑: www.jxszl.com景先生毕设
织梦程序当你添加了自定义图片字段时,前台打开当前栏目列表就会出现

Fatalerror:CalltoamemberfunctionGetInnerText()onstringin/include/taglib/channel/img.lib.phponlineVI.

 更多精彩就在: 51免费论文网|www.jxszl.com 
/>后台出现

Fatalerror:CalltoamemberfunctionGetInnerText()onanon-objectin/include/customfields.func.phponlineVIIIIX

解决方法
打开/include/customfields.func.php搜索

$fvalue=trim($ntag->GetInnerText());

改成

$fvalue=($ntag=="")?trim($ntag):trim($ntag->GetInnerText());

继续打开/include/taglib/channel/img.lib.php搜索

$innerTmp=$arcTag->GetInnerText();

改成

$innerTmp=($arcTag=="")?trim($arcTag):trim($arcTag->GetInnerText());


原文链接:http://www.jxszl.com/biancheng/dedecms/76498.html