Added a code review comment to latest trunk:
http://code.google.com/p/subtext/source/detail?r=4236
In Subtext.Web/UI/Controls/Comments.cs, line 190, there is an if statement:
if(feedbackItem.Body.Length > 0)
The problem is, especially in older blogs that have upgraded several times,
Body may be null. This if statement should be
if(!String.IsNullOrEmpty(feedbackItem.Body))
In production, this causes a NullReferenceException that gets pushed to the
error log and comments for entries that have this issue end up not getting
displayed.
Original issue reported on code.google.com by travis.illig on 2 Aug 2011 at 7:16
Original issue reported on code.google.com by
travis.illig
on 2 Aug 2011 at 7:16