Copyright @ 2015-2024 织梦园 版权所有 Power by DedeCms
鲁ICP备15039853号-2

模板标签 TAG标签 网站地图 XML地图 今日更新 返回顶部
Fatal error: Call to a member function GetInnerText() on string in /include/taglib/channel/img.lib.php on line 51 |
Fatal error: Call to a member function GetInnerText() on a non-object in /include/customfields.func.php on line 539 |
打开 /include/customfields.func.php 搜索
$fvalue = trim($ntag->GetInnerText()); |
改成
$fvalue = ($ntag=="") ? trim($ntag) : trim($ntag->GetInnerText()); |
继续打开 /include/taglib/channel/img.lib.php 搜索
$innerTmp = $arcTag->GetInnerText(); |
改成
$innerTmp = ($arcTag=="") ? trim($arcTag) : trim($arcTag->GetInnerText()); |