mirror of
https://github.com/Piwigo/Piwigo.git
synced 2025-04-26 11:19:55 +03:00
fixes #2303 replace the password in clear text with asterisks
This commit is contained in:
parent
a3833eab9b
commit
8f721fcb8b
1 changed files with 1 additions and 1 deletions
|
@ -250,7 +250,7 @@ SELECT id
|
|||
get_l10n_args('', ''),
|
||||
get_l10n_args('Link: %s', get_absolute_root_url()),
|
||||
get_l10n_args('Username: %s', stripslashes($login)),
|
||||
get_l10n_args('Password: %s', stripslashes($password)),
|
||||
get_l10n_args('Password: %s', str_repeat("*", strlen(stripslashes($password)))),
|
||||
get_l10n_args('Email: %s', $mail_address),
|
||||
get_l10n_args('', ''),
|
||||
get_l10n_args('If you think you\'ve received this email in error, please contact us at %s', get_webmaster_mail_address()),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue