I've lived with this bug for far too long (or maybe it wasn't a bug and was something I mucked up modding CS), but I was tired of typing my blog URL when I entered a comment on my blog. I appreciate every comment I receive and try to answer each of them, so that's a lot of typing.
If this wasn't something I mucked up and if you, too, are tired of typing in your URL on comment replies in CS, you might want to invest the 10 minutes to apply the fix in Blogs\Controls\CommentForm.cs. Replace "daveburke" with your username.
private void CheckCookie()
{
if(!Page.IsPostBack)
{
HttpCookie user = Context.Request.Cookies["CommentUser"];
if(user != null)
{
tbName.Text = user.Values["Name"];
tbUrl.Text = user.Values["Url"];
}
if (CSContext.Current.User.Username.ToString() == "daveburke")
tbUrl.Text = Globals.HostPath(Context.Request.Url) + BlogUrls.Instance().Home;
}
}
Technorati Tags: Community Server