Call to a member function GetInnerText() on a non-object

COS、CDN
wdzsjl 12个月前 (02-03) 阅读数 197 #织梦DedeCms
文章标签 Calltomember

错误记录:

Call to a member function GetInnerText() on a non-object

问题原因:

出现这个问题,是因为自定义了内容模型,这个内容模型里有图片字段。当我们去生成网站时,更新网站就会提示此错误

解决方案:

打开 include aglibchannelimg.lib.php 文件,将 $innerTmp = $arcTag->GetInnerText(); 更改为 $innerTmp = ($arcTag=="") ? trim($arcTag) : trim($arcTag->GetInnerText()); 我的版本是 V5.7-UTF8-SP1,在第 51 行。


COS、CDN
热门