Skip to content
Snippets Groups Projects
Commit a33b922f authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Patch #29103 by chx: do not encode apostrophes.

parent 1836d3b3
No related branches found
No related tags found
No related merge requests found
......@@ -652,7 +652,7 @@ function t($string, $args = 0) {
* Encode special characters in a plain-text string for display as HTML.
*/
function check_plain($text) {
return htmlspecialchars($text, ENT_QUOTES);
return htmlspecialchars($text);
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment