织梦提示:Fatal error: Call to a member function GetInnerText

跟对老板,待在你喜欢的气场里是非常重要的。对于一个陌生的客户来讲,销售人员要做的就是吸引客户的注意。客户不把你放在心上,你能卖出东西吗?

跟版网在做网站时经常能用到自定义模型,但是今天再在后台完成新建自定义模型之后,更新栏目出现如下错误提示:

Fatal error: Call to a member function GetInnerText() on a non-object in E:\www\include\taglib\channel\img.lib.php on line 51

那么该怎么修复这个问题呢。

其实只需要替换一段代码就可以了。

编辑打开 /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());

保存即可。

然后更新一下列表页就会发现,可以正常的更新了。

以上就是织梦提示:Fatal error: Call to a member function GetInnerText。你活得不快乐的原因是:既无法忍受目前的状态,又没能力改变这一切,可以像只猪一样懒,却无法像只猪一样懒得心安理得。更多关于织梦提示:Fatal error: Call to a member function GetInnerText请关注haodaima.com其它相关文章!

标签: Call error