织梦更新列表页提示Fatal error: Call to a member function GetInnerText()

我和你,或许分开才是最好的选择,那些曾经的过客,就当做最美丽的风景线,在以后的以后,我会好好坚强。

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

Fatalerror:CalltoamemberfunctionGetInnerText()onanon-objectinE:\www\include\taglib\channel\img.lib.phponline51

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

编辑打开\include\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()); }

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

本文织梦更新列表页提示Fatal error: Call to a member function GetInnerText()到此结束。蝴蝶需要一次蜕变,才有可能换来惊艳。小编再次感谢大家对我们的支持!

您可能有感兴趣的文章
DedeCMS提示"Call to a member function GetInnerText()"如何解决办法

织梦:Fatal error: Call to undefined function mysqli_init() in 路径\include\dedesqli.class.php on li

织梦dedecms出现系统基本参数空白或显示Call to undefined function make_hash()

织梦更新报错Call to undefined function GetTopTypename()

织梦Fatal error: Call to undefined function make_hash() in /dede/sys_info.php on line 201的如何解决方法