2、修改Include/PowerEasy.Common.Content.asp中314行的Private Function GetAuthorInfo(tmpAuthorName, iChannelID)的相關代碼
Private Function GetAuthorInfo(tmpAuthorName, iChannelID) Dim i, tempauthor, authorarry, temprs, temparr If IsNull(tmpAuthorName) Or tmpAuthorName = "未知" Or tmpAuthorName = "佚名" Then GetAuthorInfo = tmpAuthorName Else authorarry = Split(tmpAuthorName, "|") For i = 0 To UBound(authorarry) tempauthor = tempauthor & "<a href='" & strInstallDir & "ShowAuthor.asp?ChannelID=" & iChannelID & "&AuthorName=" & authorarry(i) & "' title='" & authorarry(i) & "'>" & GetSubStr(authorarry(i), AuthorInfoLen, False) & "</a>" If i <> UBound(authorarry) Then tempauthor = tempauthor & "|" Next GetAuthorInfo = tempauthor End If End Function 也就是紅色的代碼改為False,默認是Ture。