RichardKinser
Snitz Forums Admin
    
USA
16655 Posts |
Posted - 13 November 2000 : 06:02:32
|
If you would like the "Edited by - Username Time" info automatically stripped from the message when you edit the message follow these directions:
All modifications are done in <b>post.asp</b>
<b>Search for this:</b>
<font size=1><pre id=code><font face=courier size=2 id=code>TxtMsg = rs("R_MESSAGE")</font id=code></pre id=code></font id=size1>
<b>Immediately after that line insert this line:</b>
<font size=1><pre id=code><font face=courier size=2 id=code>if Instr(TxtMsg, "Edited by - ") then TxtMsg = Left(TxtMsg, InstrRev(TxtMsg, "Edited by - ")-5) end if</font id=code></pre id=code></font id=size1>
<b>Search for this:</b>
<font size=1><pre id=code><font face=courier size=2 id=code>TxtMsg = rs("T_MESSAGE")</font id=code></pre id=code></font id=size1>
<b>Immediately after that line insert this line:</b>
<font size=1><pre id=code><font face=courier size=2 id=code>if Instr(TxtMsg, "Edited by - ") then TxtMsg = Left(TxtMsg, InstrRev(TxtMsg, "Edited by - ")-5) end if</font id=code></pre id=code></font id=size1>
Edited by - Richard Kinser on 13 November 2000 06:03:52 |
|