You would need to edit the replaceArray
Code:
'<a href="' . $vbulletin->options['homeurl'] . 'sitemap/">' . $vbulletin->options['bbtitle'] . ' Sitemap</a>',
$vbulletin->options['homeurl'] . 'sitemap',
to
Code:
'<a href="' . $vbulletin->options['homeurl'] . '/sitemap/">' . $vbulletin->options['bbtitle'] . ' Sitemap</a>',
$vbulletin->options['homeurl'] . '/sitemap',
In the future version I would check if homeurl ends with / and then add accordingly.