Quote:
Originally Posted by flypaper
Thanks guys!!!
I know I may be getting picky now but...
In the vB2 version I had, the [you] code was left in the reply. This made it easy to see if someone typed really your name, or used the [you] code. In this version, the [you] code is replaced w/ my name in the reply. Anyway to keep the [you] in there when replying instead?
Did that even make sense? Previously, when hitting reply, one could see if a person was really talking to you or using the [you] code.
|
Try this.
Find:
PHP Code:
$replacementvars['/{bbusername}/i'] = $bbuserinfo['username'];
Replace with:
PHP Code:
if (THIS_SCRIPT != "editpost") {
$replacementvars['/{bbusername}/i'] = $bbuserinfo['username'];
}
EDIT: I just tested it and it works perfectly.