diff options
| -rw-r--r-- | phpBB/phpbb/user.php | 8 | 
1 files changed, 8 insertions, 0 deletions
diff --git a/phpBB/phpbb/user.php b/phpBB/phpbb/user.php index fc125f5edc..173b20ee53 100644 --- a/phpBB/phpbb/user.php +++ b/phpBB/phpbb/user.php @@ -327,6 +327,14 @@ class user extends \phpbb\session  		// After calling it we continue script execution...  		phpbb_user_session_handler(); +		/** +		* Execute code at the end of user setup +		* +		* @event core.user_setup_after +		* @since 3.1.6-RC1 +		*/ +		$phpbb_dispatcher->dispatch('core.user_setup_after'); +  		// If this function got called from the error handler we are finished here.  		if (defined('IN_ERROR_HANDLER'))  		{  | 
