Well i tried adding this:
PHP Code:
global $bbuserinfo;
$bbcode = str_replace("/you","<font color=\"#2DA72E\"><i>" .$bbuserinfo['username']. "</i></font> ",$bbcode);
After:
PHP Code:
// some nasty code so that characters like >) and ") dont have a space
// why do we have that anyway :confused:
$bbcode = str_replace(array(">\xE4)", "<\xE4)", ""\xE4)"), array('>)', '<)','")'), $bbcode);
} // end smilies
Just to get the /you part working and it is not working as expected. If it did i was just gonna throw a condition around it to check if its a admin posting or not.
But i must leave for awhile, maybe someone else can try.