Password meter is supposed to say Password accepted
But getting Password doesn't meet site's requirements.
This happens with both Joomla 4 and 5.
In media\system\js\fields\passwordstrength.js, the score is calculated at
score += this.constructor.calc(value, /[$!#?=;:*\-_€%&()`´]/g, this.special, mods);
The above line is supposed to include @ symbol
score += this.constructor.calc(value, /[@$!#?=;:*\-_€%&()`´]/g, this.special, mods);
End users (who use @ for their passwords) are confusing as why the password is not accepted.
Labels |
Removed:
?
|
Labels |
Added:
No Code Attached Yet
|
Status | New | ⇒ | Closed |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2023-11-23 18:08:24 |
Closed_By | ⇒ | alikon |
And without the ‘@‘ it is accepted? I would assume it is not because it simply is too short, regardless of the ‘@‘ .