From ece1a6c7c8dadd95095678f55548f41de39fb94e Mon Sep 17 00:00:00 2001 From: Marcel Werk Date: Tue, 5 Jun 2012 18:33:43 +0200 Subject: [PATCH] Fixed fatal error in session handler --- .../install/files/lib/system/session/SessionHandler.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wcfsetup/install/files/lib/system/session/SessionHandler.class.php b/wcfsetup/install/files/lib/system/session/SessionHandler.class.php index d1fe3a00ca..3bdeecca8f 100644 --- a/wcfsetup/install/files/lib/system/session/SessionHandler.class.php +++ b/wcfsetup/install/files/lib/system/session/SessionHandler.class.php @@ -336,7 +336,7 @@ class SessionHandler extends SingletonFactory { if ($this->user->userID != 0) { // user is no guest // delete all other sessions of this user - call_user_func(array($this->sessionEditorClassName, 'deleteUserSessions', array($this->user->userID))); + call_user_func(array($this->sessionEditorClassName, 'deleteUserSessions'), array($this->user->userID)); } // save session -- 2.20.1