tweak lucky number function

This commit is contained in:
2016-06-14 22:52:00 +10:00
parent 7d9c9ee566
commit 894a798d96
3 changed files with 36 additions and 20 deletions

View File

@@ -871,7 +871,7 @@ function booking_generate_luckynumbers() {
$attendees = $attendee_query->fetchAll();
//assuming there's less than 900 people, generate numbers within that range and shuffle the order
$numbers = range(100,650);
$numbers = range(100,750);
shuffle($numbers);
foreach ($attendees as $attendee)