From f62b44e2b0a65e6d51a09baa9c7b76649767a7c1 Mon Sep 17 00:00:00 2001 From: Oliver Hader Date: Tue, 27 Feb 2007 13:54:27 +0000 Subject: [PATCH] Fixed bug: #5072: Web>Info>Log - ID of BE user is displayed instead of its username git-svn-id: https://svn.typo3.org/TYPO3v4/Core/trunk@2159 709f56b5-9817-0410-a4d7-c38de5d9e867 --- ChangeLog | 1 + typo3/sysext/belog/class.tx_belog_webinfo.php | 1 + 2 files changed, 2 insertions(+) diff --git a/ChangeLog b/ChangeLog index 117f9cda3f7..077bf9b5bf6 100755 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,7 @@ 2007-02-27 Oliver Hader * Fixed bug: #5052: Form action URL is not htmlspecialchared (patch by Michael Stucki) + * Fixed bug: #5072: Web>Info>Log - ID of BE user is displayed instead of its username 2007-02-27 Martin Kutschker diff --git a/typo3/sysext/belog/class.tx_belog_webinfo.php b/typo3/sysext/belog/class.tx_belog_webinfo.php index d2dbf6cfbf4..54f687866e0 100755 --- a/typo3/sysext/belog/class.tx_belog_webinfo.php +++ b/typo3/sysext/belog/class.tx_belog_webinfo.php @@ -233,6 +233,7 @@ class tx_belog_webinfo extends t3lib_extobjbase { } else { $where_part.=' AND userid='.$GLOBALS['BE_USER']->user['uid']; // Self user } + $lF->be_user_Array = &$this->pObj->be_user_Array; if ($GLOBALS['BE_USER']->workspace!==0) { $where_part.=' AND workspace='.intval($GLOBALS['BE_USER']->workspace); -- 2.20.1