Quote:
Originally Posted by Blue91
Hmm, after playing with this... it isn't like the previous /me codes. Previous versions ONLY worked with /me was typed first in a line.
I noticed the current one changes /me to username regardless of where it is. This was figured out this morning by me when another user posted up the phrase burn/melt and it resulted in "burn/usernamelt. Not good. Can it be fixed to work only at the beginning of a sentence like the previous versions?
Thanks!
|
Try replacing the contents of the plugin with the following:
PHP Code:
if(substr($post['message'], 0, 3) == '/me'){
$post['message'] = substr_replace($post['message'], $post[postusername], 0, 3);
}
Also, i updated the plugin to a simple edit to only include "/me"'s that have a space after, to prevent your second issue if you're still using the default code.