From 3ed5450f5bc51b03f5a4819dcdb7f709cbf97f02 Mon Sep 17 00:00:00 2001 From: Michael Schams <typo3@2020.schams.net> Date: Fri, 21 Feb 2020 19:52:06 +1100 Subject: [PATCH] [BUGFIX] Show correct data in backend user detail view The backend user detail view shows the select/modify table with two columns: "select" and "modify". This patch makes sure that the correct data is shown in the table, in particular in column "modify". Resolves: #90466 Releases: master Change-Id: I706568defb1184d2809f24547d95e2eea9d46a8c Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/63345 Tested-by: TYPO3com <noreply@typo3.com> Tested-by: Oliver Bartsch <bo@cedev.de> Tested-by: Daniel Goerz <daniel.goerz@posteo.de> Reviewed-by: Oliver Bartsch <bo@cedev.de> Reviewed-by: Andreas Fernandez <a.fernandez@scripting-base.de> Reviewed-by: Daniel Goerz <daniel.goerz@posteo.de> --- .../beuser/Resources/Private/Templates/BackendUser/Show.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typo3/sysext/beuser/Resources/Private/Templates/BackendUser/Show.html b/typo3/sysext/beuser/Resources/Private/Templates/BackendUser/Show.html index 6fc3c52dcea2..48c9c8924908 100644 --- a/typo3/sysext/beuser/Resources/Private/Templates/BackendUser/Show.html +++ b/typo3/sysext/beuser/Resources/Private/Templates/BackendUser/Show.html @@ -134,7 +134,7 @@ </bu:display.tableAccess> </td> <td class="text-center"> - <bu:display.tableAccess table="{table}" select="{data.tables.tables_select}" + <bu:display.tableAccess table="{table}" select="{data.tables.tables_modify}" modify="{data.tables.tables_modify}"> <f:then><span class="t3-icon change-permission fa fa-check text-success"></span> </f:then> -- GitLab