// default activated email notification at the first calling of the settings (depending on the new setting in the acp)
vbsoccer 1.4.20 (!!!)
find in vbsoccer.php:
PHP Code:
$emailabo['type0'] = ' checked="checked"';
replace with:
PHP Code:
if (!empty($vbulletin->options['vbsoccer_auto_emailabotype']) AND empty($vbsoccerprefsLoaded))
{
$emailabo[sprintf('type%d', $vbulletin->options['vbsoccer_auto_emailabotype'])] = ' checked="checked"';
}
else
{
$emailabo['type0'] = ' checked="checked"';
}