第一个链接显示不正确,因为有一个带有“sign.On line 60 of ListCatDisplayer.php,there a error”的错误:
$this->lcp_output .= \'<\' . $tag;
if (isset($this->params[\'class\'])): $this->lcp_output .= \' class="\' . $this->params[\'class\']; endif;
$this->lcp_output .= \'">\';
如您所见,我总是在关闭标记时添加“when closing the tag。因此,这产生了:
如果您指定了一个类并添加了更多参数,则“错误”会导致整个标记错误。
我已将其修改为在班级行中添加“仅限”:
$this->lcp_output .= \'<\' . $tag;
if (isset($this->params[\'class\'])): $this->lcp_output .= \' class="\' . $this->params[\'class\'] . \'"\'; endif;
$this->lcp_output .= \'>\';
它在版本0.20.2中已修复,现在可以进行更新。很抱歉给您带来不便,也很抱歉您在评论中没有得到太多帮助。这里的用户通常更友好。