Skip to content

Commit

Permalink
fix: allow more characters if images are embedded
Browse files Browse the repository at this point in the history
  • Loading branch information
thorsten committed Sep 28, 2023
1 parent 692b156 commit d0d66bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion phpmyfaq/src/phpMyFAQ/Helper/FaqHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ public function cleanUpContent(string $content): string
{
$htmlSanitizer = new HtmlSanitizer(
(new HtmlSanitizerConfig())
->withMaxInputLength(100000)
->withMaxInputLength(200000)
->allowSafeElements()
->allowRelativeLinks()
->allowStaticElements()
Expand Down

0 comments on commit d0d66bb

Please sign in to comment.