ViewEntry doesn't show Written By value
description
To replicate this issue. Create a new blog as a Host user and make a post. Then go to that post and you will see "Written By: "
To fix this problem:
Modify Source: ViewEntry.ascx.vb
(Line: 119)
If m_oBlog.ShowFullName Then
lblUserID.Text = m_oEntry.UserFullName
Else
lblUserID.Text = m_oEntry.UserName
End If
Original Source used m_oBlog.UserFullName which is not populated from GetBlog() so it's value is Nothing
Attached is a copy of my modified code for version 4.1.0 that contains the fix for anyone who wants it now.
Jon