aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/session.php
diff options
context:
space:
mode:
authorMasterShredder <immortalshredder@gmail.com>2014-12-08 08:50:05 +0400
committerMasterShredder <immortalshredder@gmail.com>2014-12-08 21:37:07 +0300
commitfda5d8d637661dba083dc168745058628d38e5fd (patch)
treeff53917647c9140fbdad8c67362f534755b4dd3c /phpBB/phpbb/session.php
parent1896825f39225368e1843a28479818f2bf195da2 (diff)
downloadforums-fda5d8d637661dba083dc168745058628d38e5fd.tar
forums-fda5d8d637661dba083dc168745058628d38e5fd.tar.gz
forums-fda5d8d637661dba083dc168745058628d38e5fd.tar.bz2
forums-fda5d8d637661dba083dc168745058628d38e5fd.tar.xz
forums-fda5d8d637661dba083dc168745058628d38e5fd.zip
[ticket/13422] Deleted event core.session_check_user_session
Diffstat (limited to 'phpBB/phpbb/session.php')
-rw-r--r--phpBB/phpbb/session.php10
1 files changed, 1 insertions, 9 deletions
diff --git a/phpBB/phpbb/session.php b/phpBB/phpbb/session.php
index 35df71b92e..2a948fd885 100644
--- a/phpBB/phpbb/session.php
+++ b/phpBB/phpbb/session.php
@@ -215,7 +215,7 @@ class session
function session_begin($update_session_page = true)
{
global $phpEx, $SID, $_SID, $_EXTRA_URL, $db, $config, $phpbb_root_path;
- global $request, $phpbb_container, $phpbb_dispatcher;
+ global $request, $phpbb_container;
// Give us some basic information
$this->time_now = time();
@@ -372,14 +372,6 @@ class session
// Did the session exist in the DB?
if (isset($this->data['user_id']))
{
- /**
- * Event to check user session
- *
- * @event core.session_check_user_session
- * @since 3.1.3-RC1
- */
- $phpbb_dispatcher->dispatch('core.session_check_user_session');
-
// Validate IP length according to admin ... enforces an IP
// check on bots if admin requires this
// $quadcheck = ($config['ip_check_bot'] && $this->data['user_type'] & USER_BOT) ? 4 : $config['ip_check'];