On my xs worked
in bbcode.php
replace
- // generate html
 - $html = '<blockquote class="quote"><div class="quote-nouser">' . $lang['xs_bbc_hide_message'] . ':</div><div class="post-text">';
 - if(!$show)
 - {
 - $content = $lang['xs_bbc_hide_message_explain'];
 - }
 - return array(
 - 'valid' => true,
 - 'html' => $html . $content . '</div></blockquote>'
 - );
 - }
 
with
- // generate html
 - $html = '<blockquote class="quote"><div class="quote-nouser">' . $lang['xs_bbc_hide_message'] . ':</div><div class="post-text">';
 - if(!$show)
 - {
 - return array(
 - 'valid' => true,
 - 'html' => $html . $lang['xs_bbc_hide_message_explain'] . '</div></blockquote>',
 - 'allow_nested' => false,
 - );
 - }
 - else
 - {
 - return array(
 - 'valid' => true,
 - 'start' => $html,
 - 'end' => '</div></blockquote>'
 - );
 - }
 - }
 











 BA






 Borgo San Michele


