Topic History for Edits

Snitz™ Forums 2000
https://forum.snitz.com/forumTopic/Posts/66847?pagenum=1
05 November 2025, 07:06

Topic


phy1729
Topic History for Edits
13 April 2008, 00:11


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 & _
<

 

Replies ...


Etymon
13 April 2008, 01:37


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

<
phy1729
13 April 2008, 10:59


Nice catch. Didn't test that scenario.<
bobby131313
13 April 2008, 12:43


Very nice, I'm likin' it! Thanks!<
© 2000-2021 Snitz™ Communications