Actions
Bug #94336
closeddata = TSFE:fe_user|user|xxx is showing data of user logged in first for every other user
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
felogin
Target version:
-
Start date:
2021-06-14
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
10
PHP Version:
7.3
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
I have tried to get fe_user data in the fontend with something like
temp.lastname = TEXT
temp.lastname.data = TSFE:fe_user|user|last_name
But in the frontend there is (for every user) always the data of the first user that logged in.
It seem that there is something cached even if config.no_cache=1.
Using a viewhepler to get the fe_user data does also not work – same behavoir.
Updated by Benni Mack almost 3 years ago
- Status changed from New to Closed
Hey Alexander,
you need to wrap it in a COA_INT object (non-cached).
page.10 = COA_INT
page.10 {
10 = TEXT
10.data = TSFE:fe_user|user|last_name
}
Actions