I can get rid of the error by editing the plugin editor_toolbar_start...
finding the code:
Code:
foreach ($bbcodecache AS $bbcode)
{
if($abe1_bbcode[non_core][$bbcode['bbcodetag']] == 0)
{
unset($vbulletin->bbcodecache[$bbcode['bbcodeid']]);
}
}
and changing it to :
Code:
if ($bbcodecache !== null)
{
foreach ($bbcodecache AS $bbcode)
{
if($abe1_bbcode[non_core][$bbcode['bbcodetag']] == 0)
{
unset($vbulletin->bbcodecache[$bbcode['bbcodeid']]);
}
}
}
But none of the custom bbcode icons will show in the cms article editor.