yeah right, that has been changed from vb2 to rc4 and back in vb3 final
in private.php you'll find this:
PHP Code:
// allow quotes to remain with an optional request variable
// this will fix a problem with forwarded PMs and replying to them
if ($_REQUEST['stripquote'])
if you change it to
PHP Code:
// allow quotes to remain with an optional request variable
// this will fix a problem with forwarded PMs and replying to them
if (true OR $_REQUEST['stripquote'])
it will work the way you wanted it