forked from wallabag/wallabag
Fix reviews
Encrypt username too Redirect to list after saving credentials Fix typos Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
committed by
Jeremy Benoist
parent
906424c1b6
commit
bead8b42da
@ -38,7 +38,8 @@ class SiteCredentialRepository extends \Doctrine\ORM\EntityRepository
|
||||
return;
|
||||
}
|
||||
|
||||
// decrypt password before returning it
|
||||
// decrypt user & password before returning them
|
||||
$res['username'] = $this->cryptoProxy->decrypt($res['username']);
|
||||
$res['password'] = $this->cryptoProxy->decrypt($res['password']);
|
||||
|
||||
return $res;
|
||||
|
||||
Reference in New Issue
Block a user