Quote:
Originally Posted by DaveAK
Got it working for 3.6.x Had to change the PHP code for the QUOTE and Quick_Reply instances to the following :
PHP Code:
if (isset($originalposter))
{
$pagetext = preg_replace('#^(([ \t]|\[[a-z]+[^\]]*\])*)/me[ \t](.*)$#Uim', '$1* ' . rtrim(rtrim($originalposter,"0..9"),";") . ' $3', $pagetext);
}
The nested rtrim first removes the post ID, then the semi-colon, so that it will work with usernames that end in numbers. No file edits are needed as in my previous attempt posted above.
|
Can someone add this hack to the 3.6 mods. This is the only change above that needs to get added to work on 3.6.8. Thank you.