dedecms 添加图片字段后,文章点击修改提示错误:
Call to a member function GetInnerText() on a non-object in D:\WWW*****\include\customfields.func.php in line 539.
实际是因为空字段的处理问题
解决办法:
打开\include\customfields.func.php文件,找到539行:
把$fvalue = trim($ntag->GetInnerText());
替换成:$fvalue = ($ntag=="") ? trim($ntag) :trim($ntag->GetInnerText());
前台调用显示出问题了
{dede:img text='' width='200' height='200'} /uploads/181017/1-10101H21F54P.gif {/dede:img}
具体修改方法
1、添加自定义函数
/include/extend.func.php 文件
// 获取 'img-图片' 附加字段图片地址
// 针对 '{dede:img text='' width='2534' height='1138'} /uploads/161027/1-16102G12Z1930.png {/dede:img}' 格式
function GetOneImgUrl($img,$ftype=1){
if($img <> ''){
$dtp = new Ded