Quote:
Originally posted by FireFly
[high]* nakkid runs fast
|
there is a little bug firefly, you can see it for yourself... the original / me code is replaced by my own name...

[/high]
however is easy to fix it... do this:
find:
PHP Code:
if ($dome) {
global $post;
$bbcode = preg_replace('#^/me (.*)$#im', "<font color=\"#FF9C58\">* $post[username] \\1</font>", $bbcode);
}
replace it with:
PHP Code:
if ($dome) {
global $post,$originalposter;
$bbcode = preg_replace('#^/me (.*)$#im', "<font color=\"#FF9C58\">* $post[username] \\1</font>", $bbcode);
if ($bbcodeid==6) {
$bbcode = preg_replace('#^/me (.*)$#im', "<font color=\"#FF9C58\">* $originalposter \\1</font>", $bbcode);
}
}
ouuuupss i forgot a dollar..

fixed.