在织梦自定义模型后,可能会报下面这个错误,Fatal error: Call to a member function GetInnerText() on a non-object in D:WWW2ebhincludecustomfields.func.php on line 539
解决办法如下:
打开includecustomfields.func.php文件,找到539行:
把$fvalue = trim($ntag->GetInnerText());
替换成:$fvalue = ($ntag=="") ? trim($ntag) :trim($ntag->GetInnerText());
就可以了
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)