fixed xss in timesheet description (#962)

This commit is contained in:
Kevin Papst
2019-07-14 13:58:10 +02:00
committed by GitHub
parent e68b7da1f8
commit a0e8aa3a43
7 changed files with 7 additions and 7 deletions

View File

@@ -77,6 +77,6 @@ class MarkdownExtension extends AbstractExtension
*/
public function markdownToHtml(string $content): string
{
return $this->markdown->toHtml($content, true);
return $this->markdown->toHtml($content, false);
}
}