Remove HTML Entity Decode from the HTML Purifier as this is not needed now

This commit is contained in:
johnnyq
2023-03-11 21:47:11 -05:00
parent af46738427
commit 16b20c0bfa
4 changed files with 3 additions and 3 deletions

View File

@@ -19,7 +19,7 @@ $row = mysqli_fetch_array($sql_document);
$folder_name = htmlentities($row['folder_name']);
$document_name = htmlentities($row['document_name']);
$document_content = $purifier->purify(html_entity_decode($row['document_content']));
$document_content = $purifier->purify($row['document_content']);
//$document_content = $row['document_content'];
$document_created_at = htmlentities($row['document_created_at']);
$document_updated_at = htmlentities($row['document_updated_at']);