本文主要讲解《织梦自定义图片字段报错CalloamembefucioGeIeTex()》的
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()); |
本网刊登的文章均仅代表作者个人观点,并不代表本网立场。文中的论述和观点,敬请读者注意判断。
2021-02-08
2021-02-24
2021-02-08
2021-02-08
2021-02-08
2021-02-08
2021-02-08
2021-02-24