OK, this should fix it:
Find this code in index.php
PHP Code:
if ($thread['iconid']) {
$show['icon'] = true;
$thread['threadiconpath'] = &$iconcache["$thread[threadiconid]"]['iconpath'];
$thread['threadicontitle'] = &$iconcache["$thread[threadiconid]"]['title'];
} elseif (!empty($vboptions['showdeficon'])) {
$show['icon'] = true;
$thread['threadiconpath'] = $vboptions['showdeficon'];
$thread['threadicontitle'] = $vbphrase['default'];
}
Replace it with:
PHP Code:
$icon = fetch_iconinfo($thread['iconid']);
if (is_array($icon)) {
$show['icon'] = true;
$thread['threadiconpath'] = $icon['iconpath'];
$thread['threadicontitle'] = $icon['title'];
}
That should fix it