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

问题描述

当在织梦Dede中添加自定义图片字段时,前台打开当前栏目列表会出现以下错误:

 
 
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

解决方法

  1. 编辑 customfields.func.php 文件

    • 打开 /include/customfields.func.php 文件。
    • 找到以下代码:
       
       
      $fvalue = trim($ntag->GetInnerText());
    • 修改为:
       
       
      $fvalue = ($ntag == "") ? trim($ntag) : trim($ntag->GetInnerText());
  2. 编辑 img.lib.php 文件

    • 打开 /include/taglib/channel/img.lib.php 文件。
    • 找到以下代码:
       
       
      $innerTmp = $arcTag->GetInnerText();
    • 修改为:
       
       
      $innerTmp = ($arcTag == "") ? trim($arcTag) : trim($arcTag->GetInnerText());

 

本页面信息来源互联网,如您认为该页面内容侵犯您的权益,请拨打电话处理。 备案号:陕ICP备2022008266号-1陕公网安备61030302000361