织梦错误:Call to a member function GetInnerText() on a non-objec
[导读]:织梦 在后台自定义模型添加了图片上传的时候 出现了Fatal error: Call to a member function GetInnerText() on a non-object in/htdocs/include/customfields.func.phpon line539错误 网上有很多解决方案都不对...
织梦在后台自定义模型添加了图片上传的时候
出现了Fatal error: Call to a member function GetInnerText() on a non-object in /htdocs/include/customfields.func.php on line 539错误
网上有很多解决方案都不对,现织梦二次开发网给出如下解决方案
将include/customfields.func.php 文件的539行
$fvalue = trim($ntag->GetInnerText()); |
替换为
$fvalue = ($ntag=="") ? trim($ntag) : trim($ntag->GetInnerText()); |
保存即可
本文来自投稿,不代表微盟圈立场,如若转载,请注明出处:https://www.vm7.com/a/jc/115375.html