This is a comment on How is minimum user password length determined?, posted by WikiAdmin at 21.12.2024 08:14

View source for Re: How is minimum user password length determined?

You must also change the ##pwd_admin_min_chars## lenght. 

When you're Admin it **always** checks against ##pwd_admin_min_chars##.

%%(php)
<?php

$min_chars = $this->is_admin() ? $this->db->pwd_admin_min_chars : $this->db->pwd_min_chars;
%%

We can add a password reset by admin.