Merge branch 'develop'

This commit is contained in:
Simon Vieille 2022-03-06 22:09:21 +01:00
commit 4be92913a5
2 changed files with 2 additions and 1 deletions

View file

@ -3,6 +3,7 @@
### Added
* add ability to rename file in the file manager
### Fixed
* fix user factory
### Changed
## [1.7.2] - 2022-03-03

View file

@ -29,7 +29,7 @@ class UserFactory implements FactoryInterface
$entity->setEmail($email);
}
if (null !== $email) {
if (null !== $password) {
$entity->setPassword($this->encoder->encodePassword($entity, $password));
}