X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FAuth%2FPasswordPolicy.pm;h=3cf5c149b98e1c48f4f2edc6f767ca01ae10c6ce;hb=0c32dd23e6c2d104239bd489fc61b81db8f19f59;hp=e5806a7a51b543ab8620eb02c2217ae1528fe595;hpb=6b352f389e016855f98e52efcff612a7f4c7c8e4;p=kivitendo-erp.git diff --git a/SL/Auth/PasswordPolicy.pm b/SL/Auth/PasswordPolicy.pm index e5806a7a5..3cf5c149b 100644 --- a/SL/Auth/PasswordPolicy.pm +++ b/SL/Auth/PasswordPolicy.pm @@ -81,7 +81,6 @@ sub init_config { $cfg{invalid_characters_re} = '[' . quotemeta($cfg{invalid_characters}) . ']' if $cfg{invalid_characters}; $cfg{special_characters} = '!@#$%^&*()_+=[]{}<>\'"|\\,;.:?-'; $cfg{special_characters_re} = '[' . quotemeta($cfg{special_characters}) . ']'; - print $cfg{special_characters_re}, "\n"; map { $cfg{"require_${_}"} = $cfg{"require_${_}"} =~ m/^(?:1|true|t|yes|y)$/i } qw(lowercase uppercase digit special_char);