问题:织梦修改或者添加了自定义表单后在后台修改文章的时候出现如下错误: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()-LMLPHP

解决代码:

找到这段代码

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

换成

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