Skip to content

Commit

Permalink
Escape custom profile field value in user settings page
Browse files Browse the repository at this point in the history
  • Loading branch information
samerton committed Jul 3, 2022
1 parent 7fe5282 commit 3b3efa6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/Core/pages/user/settings.php
Expand Up @@ -512,7 +512,7 @@

$custom_fields_template[$field->name] = [
'name' => Output::getClean($field->name),
'value' => $field->value,
'value' => Output::getClean($field->value),
'id' => $field->id,
'type' => $type,
'required' => $field->required,
Expand Down

0 comments on commit 3b3efa6

Please sign in to comment.