Another item under the "make CSBlogs more like dotText" category is getting rid of the Anonymous author listing in post trackback comments. So if, say, my pal Julie Lerman were to link to my blog, the comment trackback entry will list "Julia Lerman Blog - Don't Be Iffy..." as the author instead of "Anonymous."
The time this mod requires can be measured in seconds. In CommunityServer.Blogs.Controls.EntryComments, comment out (or delete) the original line and add the line in bold.
else if(entry.BlogPostType == BlogPostType.Trackback)
{
//namelink.Text = entry.Username != null ? entry.Username : "TrackBack";
namelink.Text = entry.TrackBackName;
namelink.Attributes.Add("title","TrackBack");
}
Another Anonymous free radical destroyed.