From f944067aff4623b10ef36a5e1b21465c17c94640 Mon Sep 17 00:00:00 2001 From: Marco Date: Mon, 30 Jan 2017 18:48:23 +0100 Subject: [PATCH] Set 'ignore_user_abort' to 'true' in method 'register' --- src/Auth.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Auth.php b/src/Auth.php index 47a7296..0af1a06 100644 --- a/src/Auth.php +++ b/src/Auth.php @@ -176,6 +176,8 @@ class Auth { public function register($email, $password, $username = null, callable $callback = null) { $this->throttle(self::THROTTLE_ACTION_REGISTER); + ignore_user_abort(true); + $email = self::validateEmailAddress($email); $password = self::validatePassword($password);