好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

dedecms自定义模型:Call to a member function GetInnerTex

dedecms自定义模型:Call to a member function GetInnerText()

今天在做一个站时用到了自定义模型,遇到了些问题,在更新列表页时提示:

这个错误会在更新自定义模型栏目列表的时候出现,修复此问题方法很简单,编辑打开 includetaglibchannelimg.lib.php,查找51行左右:

$innerTmp = $arcTag->GetInnerText();将其替换为:

$innerTmp = ($arcTag==]") ? trim($arcTag) : trim($arcTag->GetInnerText());

if ( $arcTag ==]"){  $innerTmp  = trim( $arcTag );  }  else {  $innerTmp  = trim( $arcTag ->GetInnerText());  } 

然后就能正常更新列表页了,问题上解决.

查看更多关于dedecms自定义模型:Call to a member function GetInnerTex的详细内容...

  阅读:52次