open includes/functions.php
and find:
PHP Code:
// ###################### Start strip_quotes #######################
function strip_quotes($text)
{
return preg_replace('#\[quote(=("|"|\'|).*\\2)?\]((?>[^\[]+?|(?R)|.))*\[/quote\]#siU', '', $text);
//return preg_replace('#\[quote(=("|"|\'|).*\\2)?\].*\[/quote\]#siU', '', $text);
}
and replace with:
PHP Code:
// ###################### Start strip_quotes #######################
function strip_quotes($text)
{
return preg_replace(array(
'#\[quote(=("|"|\'|).*\\2)?\]((?>[^\[]+?|(?R)|.))*\[/quote\]#siU',
'#\[quote2(=("|"|\'|).*\\2)?\]((?>[^\[]+?|(?R)|.))*\[/quote2\]#siU',
'#\[quote3(=("|"|\'|).*\\2)?\]((?>[^\[]+?|(?R)|.))*\[/quote3\]#siU',
'#\[quote4(=("|"|\'|).*\\2)?\]((?>[^\[]+?|(?R)|.))*\[/quote4\]#siU'
), array('', '', '', ''), $text
);
}
that should work