更新列表页时提示:Fatal error: Call to a member function GetInnerText() on a non-object in \include\taglib\channel\img.lib.php on line 42
这个错误提示会在更新自定义模型栏目列表的时候出现,修复此问题方法很简单
编辑打开 \include\taglib\channel\img.lib.php
查找:
$innerTmp = $arcTag->GetInnerText(); |
将其替换为:
$innerTmp = ($arcTag=="") ? trim($arcTag) : trim($arcTag->GetInnerText()); |
或者:
if($arcTag==""){ $innerTmp = trim($arcTag); } else{ $innerTmp = trim($arcTag->GetInnerText()); } |
OK,搞定。
其实两种效果是一模一样的。
转载自零度科技:http://www.00isp.com/webdesign/dedecms-bug/522.html
标签: