Skip to content
Snippets Groups Projects
Commit e7b45ab9 authored by Guido Schmechel's avatar Guido Schmechel Committed by Benni Mack
Browse files

[TASK] Display user and group names completely

User and group names in the access module are no longer shortened
after 20 characters. It is now possible to see the full 50 characters.

In addition, a title attribute has been added.

Resolves: #93089
Releases: master
Change-Id: If37d24235ff445297548a2830e5745cb889d5a32
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/67363


Tested-by: default avatarTYPO3com <noreply@typo3.com>
Tested-by: default avatarOliver Bartsch <bo@cedev.de>
Tested-by: default avatarBenni Mack <benni@typo3.org>
Reviewed-by: default avatarOliver Bartsch <bo@cedev.de>
Reviewed-by: default avatarBenni Mack <benni@typo3.org>
parent 7a2fd029
Branches
Tags
No related merge requests found
......@@ -4,6 +4,7 @@
data-page="{pageId}"
data-group-id="{groupId}"
data-groupname="{groupname}"
title="{groupname}"
>
<f:if condition="{groupId} == 0">
<f:then>
......@@ -20,7 +21,7 @@
<f:comment>
A group name can be resolved
</f:comment>
{groupname -> f:format.crop(maxCharacters:20)}
{groupname}
</f:then>
<f:else>
<f:comment>
......
......@@ -5,6 +5,7 @@
data-page="{pageId}"
data-owner="{userId}"
data-username="{username}"
title="{username}"
>
<f:if condition="{userId} == 0">
<f:then>
......@@ -21,7 +22,7 @@
<f:comment>
A user name can be resolved
</f:comment>
{username -> f:format.crop(maxCharacters:20)}
{username}
</f:then>
<f:else>
<f:comment>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment