ACP --> Plugins & Products --> Plugin Manager, Find the plugin called,
MARCO1 Hide BBCODE Functions (M), under the group,
MARCO1 Hide BBCODE, edit it
and find this bit of code:
Code:
$MARCO1_NoHideUSG = split(',',$vbulletin->options['MARCO1_NoHideUSG']);
Replace it with this:
Code:
$MARCO1_NoHideUSG = explode(',',$vbulletin->options['MARCO1_NoHideUSG']);
ACP --> Plugins & Products --> Plugin Manager, Find the plugin called,
MARCO1 Print Pages Hide BBCODE Functions, under the group,
MARCO1 Hide BBCODE, edit it
and find this bit of code:
Code:
$MARCO1_NoHideUSG = split(',',$vbulletin->options['MARCO1_NoHideUSG']);
Replace it with this:
Code:
$MARCO1_NoHideUSG = explode(',',$vbulletin->options['MARCO1_NoHideUSG']);