Laughable offence I'm afraid
These two lines ;
PHP Code:
$search_text = '</strong><br />';
$vbulletin->templatecache['navbar'] = str_replace($search_text,$search_text.$unread.'<br />',$vbulletin->templatecache['navbar']);
... become this ;
PHP Code:
$search_text = '<!-- UNREAD -->';
$vbulletin->templatecache['header'] = str_replace($search_text,$search_text.$unread.'<br />',$vbulletin->templatecache['header']);
And you add
<!-- UNREAD --> to your header template, where you want the mod to appear.