[quote]
READ:
To fix the bug where users who quote other people get the /me tag messed up, replace this code in newreply.php:
Code:
$pagetext = preg_replace("/(\[quote])(.*)(\[\/quote])/siU", "", $pagetext);
With this:
Code:
$pagetext = preg_replace("/(\
Quote:
)(.*)(\[\/quote])/siU", "", $pagetext);
$pagetext = preg_replace('#^/me(.*)$#im', "* $originalposter\\1", $pagetext);
|
This is what I ahve in newrepy:
Code:
$postdate=vbdate($dateformat,$postinfo[dateline]);
$posttime=vbdate($timeformat,$postinfo[dateline]);
$pagetext=$postinfo[pagetext];
$pagetext = trim(preg_replace("/(\[quote])(.*)(\[\/quote])/siU", "", $pagetext));
eval("\$message = \"".gettemplate("quotereply",1,0)."\";");
}
}
How do I add the code fix? Also, how do I fix the preview view?