POST TIME:2021-05-24 03:05
織夢(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)告訴大家解決的辦法:
找到并打開(kāi)/include/taglib/channel/img.lib.php文件,在里面找到如下代碼:
$innerTmp = $arcTag->GetInnerText();
將其替換為如下代碼:
$innerTmp = ($arcTag=="") ? trim($arcTag) : trim($arcTag->GetInnerText());
這樣就可以解決這個(gè)問(wèn)題了。