That is a bug. Just fixed it. If you want to try the changes, just change line 106 in join.php to:
$info[$user->userid] = $user->email;
$res->invite_users($info, array(), $user, $accept_code);
Hi Nick,
I've commented line 106 of join.php:
//$res->invite_users(array($user->userid . '|' . $user->email), array(), $user, $accept_code);
After, I wrote new code on the same line:
$info[$user->userid] = $user->email;
$res->invite_users($info, array(), $user, $accept_code);
Here what happens:
1) Mr. Brown makes a reservation and flags 'Allow registered users to join?'.
2) Mr. Brown gets an email of 'Reservation Created'.
3) Mr. Pink selects the reservation of Mr. Brown.
4) Mr. Pink clicks on 'Participants' -> 'My Participant Options' -> 'Join'.
5) An email is sent from 'Mr. Brown' to 'Mr. Pink' (and not viceversa) wiht subject 'Reservation Invitation' and body ' m ' (yes just the letter m).
I think something's wrong.....
franky4fingers