Skip to content

Commit

Permalink
Test: Do Not Strip Tags on Input in ErrorText
Browse files Browse the repository at this point in the history
  • Loading branch information
kergomard committed Nov 14, 2024
1 parent 2e87aa0 commit 91365ab
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -671,7 +671,7 @@ public function getErrorText(): string

public function setErrorText(?string $text): void
{
$this->errortext = $this->getHtmlQuestionContentPurifier()->purify($text ?? '');
$this->errortext = $text ?? '';
}

public function getParsedErrorText(): array
Expand Down

0 comments on commit 91365ab

Please sign in to comment.