织梦添加自定义字段为图片出现Fatal error: Call to a member function GetInnerText()错误解决方法

织梦修改或者添加自定义字段图片或者添加自定义表单后在后台修改文章的时候出现如下错误:Fatal error: Call to a member function GetInnerText() on a non-object in \include\customfields.func.php on line 539

如图所示:

织梦添加自定义字段为图片出现Fatal error: Call to a member function GetInnerText()错误解决方法

解决方法很简单,首先打开织梦的根目录下的“include”-“customfields.func.php”文件,在第539行中把以下代码:

$fvalue = trim($ntag->GetInnerText());

替换成以下代码即可:

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

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/68724ae6a2c50b7b3f9ee4d51942526a.html