作者在 2006-10-05 02:54:00 发布以下内容
博客首页和分专题的首页列出一条条的博客标题的时候前面带着所在专题的链接,用[]括起来的,看上去有点别扭,影响标题的显示,其本身也没有太大意义,就把它去掉,方法:
找到/inc/class_blog.asp的505行左右,把下面的代码屏蔽掉
if rs("subjectid")>0 then
show_topic = show_topic & "<a href=""" & user_truepath&"cmd."&f_ext&"?uid="&user_id&"&do=blogs&id=" & rs("subjectid") & """>[" & oblog.filt_html(getsubname(substr,rs("subjectid"))) & "]</a>"
end if
找到/inc/class_usercommand.asp的395行左右,把下面的代码屏蔽掉
If rst("subjectid") > 0 Then
strTopic = strTopic & "<a href=""" & mUserCmdpath & "cmd."&f_ext&"?uid="&mUserid&"&do=blogs&id=" & rst("subjectid") & """>[" & oblog.filt_html(getsubname(substr,rst("subjectid"))) & "]</a>"
End If