Small bug: Winning Lottery PM's are sent from User ID 1 even though another ID is defined in the configuration. Wouldn't be a big deal but this person is no longer the administrator of our forums.
So I edited this manually in the lotteryprocess.php here:
Code:
// fetch who the pm should be sent fromif (!is_numeric($vbulletin->options['estore_lotterypmsender'])) { $vbulletin->options['estore_lotterypmsender'] = '1'; } $sender = fetch_userinfo($vbulletin->options['estore_lotterypmsender']);
But thought you might want to track down why the configured User ID is not updating here.