dedecms更新列表页提示Fatal error: Call to a member function

织梦更新列表页提示Fatal error: Call to a member function GetInnerText() on a non-object in ...

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

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

dedecms更新列表页提示Fatal error: Call to a member function

找到51行所在的代码,将其替换为

dedecms更新列表页提示Fatal error: Call to a member function

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

保存即可。 

然后列表页就正常了。