Quote:
12-27-02 at 09:01 AM S@NL - Pascal said this in Post #170
Did anybody see that "/me" is not translated in any way if I look at the topic review when I do a post reply ?
I solved this by adding this code in newreply.php :
(I use the vBcode style [me=user] [/me] solution)
find in newreply.php :
PHP Code:
$threadreviewbits = '';
while ($post=$DB_site->fetch_array($posts)) {
if ($postcounter++ < $maxposts) {
after this add :
PHP Code:
$post[pagetext] = preg_replace('#^/me(.*)$#im', "[me=$post[username]]\\1[/me]", $post[pagetext]);
One other thing : I have a user with a ' in his name : B'Ram. The vBcode parser failes when [me=B'Ram] is used. How can this be solved ?
|
You need to add this instead of what you have there.
PHP Code:
$reviewmessage = bbcodeparse($post[pagetext],$threadinfo[forumid],$post[allowsmilie],1);
I have a member that has an apostrophe in their name and it works fine for me. The line you are using for the me code is all wrong. This is what it is supposed to be. There should be no me= in there.
PHP Code:
$bbcode = preg_replace('#^/me (.*)$#im', "<font color=\"#FF9C58\">* $post[username] \\1</font>", $bbcode);