Minor fix.. when showing bet statistics (vbookie.php?do=stats), private bets don't show up correctly. ie. You see "$vbphrase[anon] won 1850 on ..." instead of "anon won 1850 on ...".
The fix is pretty simple. In vbookie.php, find:
Code:
$user = '<i>$vbphrase[anon]</i>';
Replace with
Code:
$user = $vbphrase['anon'];
ie. it's missing the single quotes around 'anon' in the vbphrase. I dropped the italic tags just to save messing around with single quotes within single quotes.