diff options
| author | Marc Alexander <admin@m-a-styles.de> | 2015-08-13 07:52:30 +0200 |
|---|---|---|
| committer | Marc Alexander <admin@m-a-styles.de> | 2015-08-13 07:52:30 +0200 |
| commit | 57ba51c52960b345121589619bcc08eabc8b53f4 (patch) | |
| tree | 9ff631c566f9dd33990175ff4089c2bd898f1dd9 | |
| parent | dead984f5456c3de5e5837680a61272289ce4a15 (diff) | |
| parent | 9d4228291c392ac4886c81cf98d0de03d405c405 (diff) | |
| download | forums-57ba51c52960b345121589619bcc08eabc8b53f4.tar forums-57ba51c52960b345121589619bcc08eabc8b53f4.tar.gz forums-57ba51c52960b345121589619bcc08eabc8b53f4.tar.bz2 forums-57ba51c52960b345121589619bcc08eabc8b53f4.tar.xz forums-57ba51c52960b345121589619bcc08eabc8b53f4.zip | |
Merge pull request #3763 from Zoddo/ticket/13968
[ticket/13968] Add core.user_setup_after event
| -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 3bc1af2899..f5ad5096bb 100644 --- a/phpBB/phpbb/user.php +++ b/phpBB/phpbb/user.php @@ -301,6 +301,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')) { |
