mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-03-28 17:42:57 +01:00
fixes #2303 replace the password in clear text with asterisks
This commit is contained in:
@@ -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()),
|
||||
|
||||
Reference in New Issue
Block a user