Skip to content

Commit

Permalink
FIX Multi HTML entities in shortcodes
Browse files Browse the repository at this point in the history
  • Loading branch information
Sabina Talipova committed Aug 7, 2023
1 parent 2a56cc3 commit b9251f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Forms/TextareaField.php
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,6 @@ public function Type()
*/
public function ValueEntities()
{
return htmlentities($this->Value() ?? '', ENT_COMPAT, 'UTF-8');
return htmlentities($this->Value() ?? '', ENT_COMPAT, 'UTF-8', false);
}
}

0 comments on commit b9251f6

Please sign in to comment.