織夢(mèng)修改或者添加了自定義字段為圖片或者添加自定義表單后在后臺(tái)修改文章的時(shí)候出現(xiàn)如下錯(cuò)誤:Fatal error: Call to a member function GetInnerText() on a non-object in \include\customfields.func.php on line 539
如圖所示:

(此圖片來(lái)源于網(wǎng)絡(luò),如有侵權(quán),請(qǐng)聯(lián)系刪除! )
解決方法很簡(jiǎn)單,首先打開織夢(mèng)的根目錄下的“include”-“customfields.func.php”文件,在第539行中把以下代碼:
$fvalue = trim($ntag->GetInnerText());
替換成以下代碼即可:
$innerTmp = ($arcTag=="") ? trim($arcTag) : trim($arcTag->GetInnerText());









