欢迎来到入门教程网!

dedecms

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

织梦dede自定义图片字段报错Call to a member function GetInnerText()

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

织梦dede程序当你添加了自定义图片字段时,前台打开当前栏目列表就会出现
 
Fatal error: Call to a member function GetInnerText() on string in /include/taglib/channel/img.lib.php on line 51
 
dede后台出现
 
Fatal error: Call to a member function GetInnerText() on a non-object in /include/customfields.func.php on line 539
 
解决方法
打开 /include/customfields.func.php 搜索
 
$fvalue = trim($ntag->GetInnerText());
改成
 
$fvalue = ($ntag=="") ? trim($ntag) : trim($ntag->GetInnerText());
继续打开 /include/taglib/channel/img.lib.php 搜索
 
$innerTmp = $arcTag->GetInnerText();
改成
 
$innerTmp = ($arcTag=="") ? trim($arcTag) : trim($arcTag->GetInnerText());

上一篇:dedecms 织梦模板sql标签中调用其它变量值功能修改

栏    目:dedecms

下一篇:DedeCMS织梦模板 修改文档关键词频率的教程

本文标题:织梦dede自定义图片字段报错Call to a member function GetInnerText()

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

更多dedecms

您可能感兴趣的文章

阅读排行

本栏相关

随机阅读

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

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

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

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