5

Fixed

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

comments

jSheely wrote Jul 12 2011 at 8:43 PM

My Initial DLL requires DNN 5.6.2 to be installed in order to use the DLL. I've attached another DLL that allows for version 4.7.0 or greater.

DanielComp wrote May 19 2011 at 10:44 PM

Thanks!