More a tweak than a mod. Adds the history of a topic underneath the edit box like when posting. Find in post.asp lines 1352-5
if strRqMethod = "Reply" or _
strRqMethod = "TopicQuote" or _
strRqMethod = "ReplyQuote" then
Response.Write " </td>" & vbNewLine & _
change it to
if strRqMethod = "Reply" or _
strRqMethod = "TopicQuote" or _
strRqMethod = "ReplyQuote" or _
strRqMethod = "Edit" then
Response.Write " </td>" & vbNewLine & _
<