首页>技术知识>织梦CMS DedeCMS网站提示"Call to a member function GetInnerText()"解决办法
织梦cms网站
2022-05-06
织梦(dedecms)教程学习网站【25Qi.com】-发布各类织梦cms教程、织梦cms标签调用、织梦cms建站、dedecms插件、后台采集教程,dedecms仿站教程等各类技术知识供网友学习了解。

dedecms提示"Call to a member function GetInnerText()"解决办法

今天在做一个站时用到了自定义模型,遇到了些问题,在更新列表页时提示:

Fatal error: Call to a member function GetInnerText() on a non-object in E:\www\include\taglib\channel\img.lib.php on line 51

这个错误提示会在更新自定义模型栏目列表的时候出现,修复此问题方法很简单。

编辑打开 /inculde/taglib/channel/img.lib.php

查找51行左右:

$innerTmp = $arcTag->GetInnerText();

将其替换为:

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


if($arcTag==""){
$innerTmp = trim($arcTag);
}
else{
$innerTmp = trim($arcTag->GetInnerText());
}

然后就能正常更新列表页了,问题上解决 。


显示全部内容...