mirror of
https://github.com/nuxsmin/sysPass.git
synced 2026-03-14 12:26:55 +01:00
* [FIX] Wrong encoding when displaying account's password. Thanks to @DDH112 for the feedback. Closes #1257
Signed-off-by: Rubén D <nuxsmin@syspass.org>
This commit is contained in:
@@ -78,7 +78,7 @@ final class AccountPasswordHelper extends HelperBase
|
||||
$this->view->assign('pass', $imageUtil->convertText($pass));
|
||||
} else {
|
||||
$this->view->assign('login', $accountData->getLogin());
|
||||
$this->view->assign('pass', htmlentities($pass, ENT_COMPAT | ENT_HTML5));
|
||||
$this->view->assign('pass', htmlspecialchars($pass, ENT_COMPAT));
|
||||
}
|
||||
|
||||
return [
|
||||
|
||||
Reference in New Issue
Block a user