Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Avoid a PHP Notice: Undefined index: tix_attendee_id (#1430)
As we're temporarily allowing users to edit tickets without a connected user, we're hitting the above notice on every ticket edit action. The `user_must_confirm_ticket()` method first does an `isset()` to return early if `null` is passed in, which is the default behaviour when referring to a array item that does not exist. This change should have no logic changes as a result, but should result in the PHP Notice ceasing to exist.
- Loading branch information