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

解决方法:
首先打开织梦的根目录下的“include”-“customfields.func.php”文件,在第539行中把以下代码:
$fvalue = trim($ntag->GetInnerText());
替换成以下代码即可:
$innerTmp = ($arcTag=="") ? trim($arcTag) : trim($arcTag->GetInnerText());
注明:本文为星速云原创版权所有,禁止转载,一经发现将追究版权责任!