織夢修改或者添加了自定義字段為圖片或者添加自定義表單后在后臺修改文章的時候出現(xiàn)如下錯誤:Fatal error: Call to a member function GetInnerText() on a non-object in \include\customfields.func.php on line 539
如圖所示:
解決方法很簡單,首先打開織夢的根目錄下的“include”-“customfields.func.php”文件,在第539行中把以下代碼:
$fvalue = trim($ntag->GetInnerText());
替換成以下代碼即可:
$innerTmp = ($arcTag=="") ? trim($arcTag) : trim($arcTag->GetInnerText());
版權(quán)聲明: 本站資源均來自互聯(lián)網(wǎng)或會員發(fā)布,如果侵犯了您的權(quán)益請與我們聯(lián)系,我們將在24小時內(nèi)刪除!謝謝!
轉(zhuǎn)載請注明: 織夢添加自定義字段為圖片出現(xiàn)Fatal error: Call to a member fu