织梦dedecms 图集模型添加图片字段报错解决
图集模型添加图片字段报错
Fatal error: Call to a member function GetInnerText() on string in F:\WWW\fotile\include\customfields.func.php on line 539
解决:
customfields.func.php 第539行将
$fvalue = trim($ntag->GetInnerText());
修改为:
$fvalue = ($arcTag==””) ? trim($arcTag) : trim($arcTag->GetInnerText());