织梦再新添加内容模型管理后,发布文档后,再点击更文档 就有可能会提示以下内容,导致更改文档页显示不全:
Fatal error: Call to a member function GetInnerText() on string in /你安装的目录/include/customfields.func.php on line 539
解决办法:
打开文件 “include/customfields.func.php”文件,在第539行中把以下代码:
$fvalue = trim($ntag->GetInnerText());
修改为:
$fvalue = ($arcTag=="") ? trim($arcTag) : trim($arcTag->GetInnerText());