Skip to content

Commit

Permalink
sanitize register form
Browse files Browse the repository at this point in the history
  • Loading branch information
aynsix committed Jun 7, 2024
1 parent b709122 commit ea55294
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Alchemy/Phrasea/Authentication/RegistrationService.php
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ public function registerUser(array $data, array $selectedCollections = null, $pr

foreach (self::$userPropertySetterMap as $property => $method) {
if (isset($data[$property])) {
$user->$method($data[$property]);
$user->$method($this->app['unicode']->remove_nonazAZ09($data[$property]));
}
}

Expand Down

0 comments on commit ea55294

Please sign in to comment.