Skip to content

Commit

Permalink
webui: fix password string length limitation
Browse files Browse the repository at this point in the history
This PR removes the max string length value from the form data input
filter validator for the password input field to allow passwords
longer than 64 characters.

Fixes #1480: password string length limitation
  • Loading branch information
fbergkemper committed Sep 13, 2022
1 parent c04b5d9 commit d779c73
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions webui/module/Auth/src/Auth/Model/Auth.php
Expand Up @@ -72,7 +72,7 @@ public function getInputFilter()
'options' => array(
'encoding' => 'UTF-8',
'min' => 1,
'max' => 64,
'max' => 128,
),
),
),
Expand All @@ -88,7 +88,6 @@ public function getInputFilter()
'options' => array(
'encoding' => 'UTF-8',
'min' => 1,
'max' => 64,
),
),
),
Expand Down

0 comments on commit d779c73

Please sign in to comment.