From a33b922fcc9103baecbadf1bdb741d269c365af7 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Fri, 19 Aug 2005 11:10:35 +0000 Subject: - Patch #29103 by chx: do not encode apostrophes. --- includes/common.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } /** -- cgit v1.2.3