Skip to content
Snippets Groups Projects
Commit 5178ab93 authored by Michael Oehlhof's avatar Michael Oehlhof Committed by Christian Kuhn
Browse files

[BUGFIX] Prevent adding a backend user without password

Resolves: #78411
Releases: master, 7.6
Change-Id: I47273726595639621c988910a537b205f49be13c
Reviewed-on: https://review.typo3.org/50454


Tested-by: default avatarTYPO3com <no-reply@typo3.com>
Reviewed-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
Tested-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
parent 55143df2
Branches
Tags
No related merge requests found
......@@ -70,7 +70,7 @@ class RsaInputElement extends AbstractFormElement
break;
case 'password':
$attributes['type'] = 'password';
$attributes['value'] = '********';
$attributes['value'] = $parameterArray['itemFormElValue'] ? '*********' : '';
$attributes['autocomplete'] = 'new-' . $fieldName;
break;
default:
......
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