织梦园模板网提供云优cms模板,pbootcms模板,Wordpress主题模板等各类企业新闻资讯网站模板下载服务。织梦园网站模板交流群
用户名:
密码:
注册
注册后享受折扣价

织梦提示:Fatal error: Call to a member function GetInnerText

织梦园模板 / 2020-11-29 / 收藏

我们做网站时经常能用到自定义模型,但是今天再在后台完成新建自定义模型之后,更新栏目出现如下错误提示:

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

//遍历图片信息

$mrow = 0;

$mcol = 0;

$images = array();

$innerTmp = $arcTag->GetInnerText();

if(trim($innerTmp)=='')

{

$innerTmp = GetSysTemplets("channel_article_image.htm");

}

找到51行所在的代码,

即:$innerTmp = $arcTag->GetInnerText();将其替换为

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

保存即可。

然后更新一下列表页就会发现,可以正常的更新了。

相关标签调用

收缩