diff options
author | Dries Buytaert <dries@buytaert.net> | 2005-08-19 11:10:35 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2005-08-19 11:10:35 +0000 |
commit | a33b922fcc9103baecbadf1bdb741d269c365af7 (patch) | |
tree | a27c997f65204bd4de5e0c3491166200297b5594 /includes | |
parent | 1836d3b3656f77a2e98ffdcd4d04e45410c3897f (diff) | |
download | brdo-a33b922fcc9103baecbadf1bdb741d269c365af7.tar.gz brdo-a33b922fcc9103baecbadf1bdb741d269c365af7.tar.bz2 |
- Patch #29103 by chx: do not encode apostrophes.
Diffstat (limited to 'includes')
-rw-r--r-- | includes/common.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/common.inc b/includes/common.inc index 9fc7fa2d8..2f6bed36b 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -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); } /** |