From 62ff469e37f958e174b395166dedb31e91b049ea Mon Sep 17 00:00:00 2001 From: Morton Jonuschat <m.jonuschat@mojocode.de> Date: Tue, 30 Aug 2016 09:48:44 +0200 Subject: [PATCH] [BUGFIX] Select correct database table in BackendUserAuthentication::writelog Change-Id: I8877a68d5de5017346179368dab8002d8f08077f Resolves: #77683 Releases: master Reviewed-on: https://review.typo3.org/49640 Reviewed-by: Wouter Wolters <typo3@wouterwolters.nl> Tested-by: Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by: Andreas Fernandez <typo3@scripting-base.de> Tested-by: Andreas Fernandez <typo3@scripting-base.de> --- .../core/Classes/Authentication/BackendUserAuthentication.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typo3/sysext/core/Classes/Authentication/BackendUserAuthentication.php b/typo3/sysext/core/Classes/Authentication/BackendUserAuthentication.php index 32e3b2b92782..833e628f23f6 100644 --- a/typo3/sysext/core/Classes/Authentication/BackendUserAuthentication.php +++ b/typo3/sysext/core/Classes/Authentication/BackendUserAuthentication.php @@ -2302,7 +2302,7 @@ class BackendUserAuthentication extends \TYPO3\CMS\Core\Authentication\AbstractU 'workspace' => $this->workspace ); - $connection = GeneralUtility::makeInstance(ConnectionPool::class)->getConnectionForTable('be_users'); + $connection = GeneralUtility::makeInstance(ConnectionPool::class)->getConnectionForTable('sys_log'); $connection->insert( 'sys_log', $fields, -- GitLab