Quote:
Originally Posted by Xenon
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 
|
I used a template edit to accomplish this but doing it this way would have saved me having to to do is for all the skins.
I'm curious though, what does the True actually do?