Skip to content

Commit

Permalink
Fix #274 - Views Incorrectly Encode UTF Characters as HTML Entities
Browse files Browse the repository at this point in the history
  • Loading branch information
GoryMoon committed Nov 26, 2023
1 parent 117dd81 commit 46c8af4
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions public/legacy/include/utils/db_utils.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ function from_db_convert($string, $type)
'>' => '>',
"'" => ''',
);
$GLOBALS['toHTML'] = $toHTML;
$GLOBALS['toHTML_keys'] = array_keys($toHTML);
$GLOBALS['toHTML_values'] = array_values($toHTML);
$GLOBALS['toHTML_keys_set'] = implode("", $GLOBALS['toHTML_keys']);
Expand Down

0 comments on commit 46c8af4

Please sign in to comment.