POST TIME:2021-05-25 12:57
跟版網(wǎng)在做網(wǎng)站時(shí)經(jīng)常能用到自定義模型,但是今天再在后臺(tái)完成新建自定義模型之后,更新欄目出現(xiàn)如下錯(cuò)誤提示:
Fatal error: Call to a member function GetInnerText() on a non-object in E:wwwinclude aglibchannelimg.lib.php on line 51
那么該怎么修復(fù)這個(gè)問題呢。
其實(shí)只需要替換一段代碼就可以了。
編輯打開 /inculde/taglib/channel/img.lib.php
//遍歷圖片信息
$mrow = 0;
$mcol = 0;
$images = array();
$innerTmp = $arcTag->GetInnerText();
if(trim($innerTmp)=='')
{
$innerTmp = GetSysTemplets("channel_article_image.htm");
}
找到51行所在的代碼,
即:$innerTmp = $arcTag->GetInnerText();將其替換為
$innerTmp = ($arcTag=="") ? trim($arcTag) : trim($arcTag->GetInnerText());
保存即可。
然后更新一下列表頁就會(huì)發(fā)現(xiàn),可以正常的更新了。