欢迎来到润旭源码网
帮助中心

润旭源码网

热门搜索: 企业源码    免费源码   

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

  • 时间:2020-07-27 11:11 编辑: 来源: 阅读:251
  • 扫一扫,手机访问
摘要:织梦程序当你添加了自定义图片字段时,前台打开当前栏目列表就会出现 Fatal error: Call to a member function GetInnerText() on string in /include/taglib/channel/img.lib.php on line 51 后台出现 Fatal error: Call to a member function GetInnerText()

织梦程序当你添加了自定义图片字段时,前台打开当前栏目列表就会出现

 

Fatal error: Call to a member function GetInnerText() on string in /include/taglib/channel/img.lib.php on line 51

 

后台出现

 

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());


  • 全部评论(0)
资讯详情页最新发布上方横幅
联系我们

QQ:888477 {点击直接联系}

邮箱:runxu123@qq.com

时间:周1——周6 【9:00-23:00

联系客服
购买源码 源码咨询 投诉建议 联系客服
0373-6621888
手机版

扫一扫进手机版
返回顶部