好得很程序员自学网

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

帝国CMS标签tags出现空标签的情况解决方法

修改的文件位于  e/class/t_functions.php  
 

复制代码

代码如下:


/* 
出自:www.tuohang.net
e/class/t_functions.php 
搜索 
*/ 
$str.=$jg.'<a href="'.$tagsurl.'" target="_blank">'.$r[$i].'</a>'.$br; 
$jg=$br?'':$showjg; 

/* 改成 */ 
if(!empty($r[$i])){ 
$str.=$jg.'<a href="'.$tagsurl.'" target="_blank">'.$r[$i].'</a>'.$br; 
$jg=$br?'':$showjg; 

查看更多关于帝国CMS标签tags出现空标签的情况解决方法的详细内容...

  阅读:47次