Fatal error: Call to a member function GetInnerText() on string in /include/taglib/channel/img.lib.php on line 51
后台出现
Fatal error: Call to a member function GetInnerText() on a non-object in /include/customfields.func.php on line 539
打开 /include/customfields.func.php 搜索
$fvalue = trim($ntag->GetInnerText());
$fvalue = ($ntag=="") ? trim($ntag) : trim($ntag->GetInnerText());
继续打开 /include/taglib/channel/img.lib.php 搜索
$innerTmp = $arcTag->GetInnerText();
改成
$innerTmp = ($arcTag=="") ? trim($arcTag) : trim($arcTag->GetInnerText());
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)