Topic History for Edits - Posted (1184 Views)
Average Member
phy1729
Posts: 589
589
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
Code:

if strRqMethod = "Reply" or _
strRqMethod = "TopicQuote" or _
strRqMethod = "ReplyQuote" then
Response.Write " </td>" & vbNewLine & _
change it to
Code:

if strRqMethod = "Reply" or _
strRqMethod = "TopicQuote" or _
strRqMethod = "ReplyQuote" or _
strRqMethod = "Edit"
then
Response.Write " </td>" & vbNewLine & _
<
 Sort direction, for dates DESC means newest first  
 Page size 
Posted
Advanced Member
Etymon
Posts: 2396
2396
That's a good one, Phy! smile
How about adding another line for editing the starting topic post?
strRqMethod = "Edit" = Edit the reply strRqMethod = "EditTopic" = Edit the starting topic post
if strRqMethod = "Reply" or _
strRqMethod = "TopicQuote" or _
strRqMethod = "ReplyQuote" or _
strRqMethod = "EditTopic" or _ strRqMethod = "Edit" then

<
Posted
Average Member
phy1729
Posts: 589
589
Nice catch. Didn't test that scenario.<
Posted
Senior Member
bobby131313
Posts: 1163
1163
Very nice, I'm likin' it! Thanks!<
 
You Must enter a message