quickfix: incomplete page title (included in next update (> 1.4.5))
step 1:
find in vbsoccer.php:
PHP Code:
$templater->register('HTML', $HTML);
below add:
PHP Code:
$templater->register('headtitle', strip_tags($headtitle));
step 2:
find in template 'vbsoccer_shell'
HTML Code:
<title>{vb:rawphrase vbsoccer} - {vb:raw vboptions.bbtitle}</title>
replace with:
HTML Code:
<title>{vb:rawphrase vbsoccer} - {vb:raw headtitle} - {vb:raw vboptions.bbtitle}</title>
done