https://www.icyphoenix.com/viewtopic.php?f=28&t=1533&p=17537#p17537
-----------------------------------
chusrubi2
Mon 09 Jul, 2007 21:30

Re: BBCode Hide Message With An Image Buttom
-----------------------------------
Puting this on bbcode.php[quote]FIND:
Code: [Download] [Hide] [Select]
Code: [Download] [Show]
           // 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>'
                );
            }


REPLACE WITH

Code: [Download] [Hide] [Select]
Code: [Download] [Show]
           // 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 . '<center><img src="images/bbcb_mg/images/hide_yes.gif" border="0"/></center><br />' . $lang['xs_bbc_hide_message_explain'] . '</div></blockquote>',
                    'allow_nested' => false,
                );
            }
            else
            {
                return array(
                    'valid' => true,
                    'start' => $html . '<center><img src="images/bbcb_mg/images/hide_no.gif" border="0"/></center><br />',
                    'end' => '</div></blockquote>'
                );
            }
[/quote]
I have this error:[code linenumbers=false]Parse error: syntax error, unexpected T_VARIABLE, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /home/www/downloading.mygamesonline.org/includes/bbcode.php on line 3550[/code]
 :(  what can i do?
Zuker if you are spanish answer me in spanish plz.


