From 7f65bc98adcde87ebd12dfcc3c8963c3a5ce315b Mon Sep 17 00:00:00 2001 From: Meik Sievertsen Date: Sat, 22 Sep 2007 19:18:13 +0000 Subject: new hook system (do not get it confused with events or plugins please) - introducing two new hookable functions too git-svn-id: file:///svn/phpbb/trunk@8100 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/includes/session.php | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'phpBB/includes/session.php') diff --git a/phpBB/includes/session.php b/phpBB/includes/session.php index d9cc85a154..cbb70e8601 100644 --- a/phpBB/includes/session.php +++ b/phpBB/includes/session.php @@ -1518,6 +1518,10 @@ class user extends session } } + // Call phpbb_user_session_handler() in case external application want to "bend" some variables or replace classes... + // After calling it we continue script execution... + phpbb_user_session_handler(); + // If this function got called from the error handler we are finished here. if (defined('IN_ERROR_HANDLER')) { -- cgit v1.2.1