欢迎来到入门教程网!

dedecms

当前位置:主页 > CMS教程 > dedecms >

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

来源:本站原创|时间:2021-08-05|栏目:dedecms|点击:

我们做网站时经常能用到自定义模型,但是今天再在后台完成新建自定义模型之后,更新栏目出现如下错误提示:
 
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());
 
保存即可。
 
然后更新一下列表页就会发现,可以正常的更新了。
 

上一篇:Dedecms提示ereg_replace() is deprecated错误

栏    目:dedecms

下一篇:dedecms(织梦)实现301永久重定向代码几种方法

本文标题:织梦提示:Fatal error: Call to a member function GetInnerText

本文地址:https://www.xiuzhanwang.com/a1/dedecms/14614.html

更多dedecms

您可能感兴趣的文章

阅读排行

本栏相关

随机阅读

网页制作CMS教程网络编程软件编程脚本语言数据库服务器

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:835971066 | 邮箱:835971066#qq.com(#换成@)

Copyright © 2002-2020 脚本教程网 版权所有