Warning: Function split() is deprecated in ....Bla Bla Bla
How to fix.
ACP --> Plugins & Products --> Plugin Manager, Find the plugin called, MARCO1 Latest Threads, under the group, MARCO1 Latest Forum Threads, edit it and find this bit of code:
Code:
$$MARCO1_latestusg = split(',',$vbulletin->options['MARCO1_latestusg']);
Replace it with this:
Code:
$MARCO1_latestusg = explode(',',$vbulletin->options['MARCO1_latestusg']);