Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[5.2] Password Strength Symbols #43484

Merged
merged 5 commits into from
May 22, 2024
Merged
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion build/media_source/system/js/fields/passwordstrength.es6.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
*
* Copyright (c) 2014 Thomas Kjærgaard
*
* ADAPTED BY: Joomla for use in the Joomla! CMS
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
Expand Down Expand Up @@ -50,7 +52,7 @@ class PasswordStrength {
// eslint-disable-next-line no-useless-escape
score += this.constructor.calc(
value,
/[@$!#?=;:*\-_€%&()`´]/g,
/[@$!#?=;:*\-_€%&()`´+\[\]{}'"\\|,.<>\/~^]/g,
Quy marked this conversation as resolved.
Show resolved Hide resolved
this.special,
mods,
);
Expand Down