打开function/common.func.php文件,找到下面一段代码:- //TAG处理函数
- function tagshowname($thename, $thetext) {
- $name = rawurlencode($thename);
- $thetext = str_replace('\"', '"', $thetext);
- if(cutstr($thetext,1) != '<') {
- return '<a href="javascript:;" onClick="javascript:tagshow(event, \''.$name.'\');" target="_self"><u><strong>'.$thename.'</strong></u></a>'.$thetext;
- } else {
- return $thename.$thetext;
- }
- }
复制代码 将其改为:
- //TAG处理函数
- function tagshowname($thename, $thetext) {
- $name = rawurlencode($thename);
- $thetext = str_replace('\"', '"', $thetext);
- if(cutstr($thetext,1) != '<') {
- return '<a href="javascript:;" onClick="javascript:tagshow(event, \''.$name.'\');" target="_self"><u>'.$thename.'</u></a>'.$thetext;
- } else {
- return $thename.$thetext;
- }
- }
复制代码 |