aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/session.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2007-09-22 19:18:13 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2007-09-22 19:18:13 +0000
commit7f65bc98adcde87ebd12dfcc3c8963c3a5ce315b (patch)
tree562486b0531a95c67081cb61fd67221f8f9daa2a /phpBB/includes/session.php
parente3882844ec985a62ae573bbcf618c08343afc717 (diff)
downloadforums-7f65bc98adcde87ebd12dfcc3c8963c3a5ce315b.tar
forums-7f65bc98adcde87ebd12dfcc3c8963c3a5ce315b.tar.gz
forums-7f65bc98adcde87ebd12dfcc3c8963c3a5ce315b.tar.bz2
forums-7f65bc98adcde87ebd12dfcc3c8963c3a5ce315b.tar.xz
forums-7f65bc98adcde87ebd12dfcc3c8963c3a5ce315b.zip
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
Diffstat (limited to 'phpBB/includes/session.php')
-rw-r--r--phpBB/includes/session.php4
1 files changed, 4 insertions, 0 deletions
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'))
{