織夢(mèng)DedeCMS在更新列表頁(yè)html時(shí)提示:Fatal error: Call to a member function GetInnerText() on a non-object in \include\taglib\channel\img.lib.php on line 42
往往這個(gè)錯(cuò)誤提示會(huì)在更新自定義模型的欄目列表頁(yè)html時(shí)出現(xiàn),下面CMS資源網(wǎng)告訴大家解決的辦法:
找到并打開/include/taglib/channel/img.lib.php文件,在里面找到如下代碼:
$innerTmp = $arcTag->GetInnerText();
將其替換為如下代碼:
$innerTmp = ($arcTag=="") ? trim($arcTag) : trim($arcTag->GetInnerText());
這樣就可以解決這個(gè)問(wèn)題了。
版權(quán)聲明: 本站資源均來(lái)自互聯(lián)網(wǎng)或會(huì)員發(fā)布,如果侵犯了您的權(quán)益請(qǐng)與我們聯(lián)系,我們將在24小時(shí)內(nèi)刪除!謝謝!
轉(zhuǎn)載請(qǐng)注明: 織夢(mèng)提示Call to a member function GetInnerText()的解決辦法