diff options
Diffstat (limited to 'includes/common.inc')
-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 155f5b2e8..7b6fe29da 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -649,7 +649,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); + return htmlspecialchars($text, ENT_QUOTES); } /** |