diff options
Diffstat (limited to 'includes')
-rw-r--r-- | includes/common.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/includes/common.inc b/includes/common.inc index 80ab6ee4c..234309459 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -202,8 +202,8 @@ function variable_del($name) { unset($conf[$name]); } -function drupal_specialchars($input) { - return htmlspecialchars($input, ENT_NOQUOTES, "utf-8"); +function drupal_specialchars($input, $quotes = ENT_NOQUOTES) { + return htmlspecialchars($input, $quotes, "utf-8"); } function table_cell($cell, $header = 0) { @@ -489,7 +489,7 @@ function check_url($uri) { } function check_form($text) { - return htmlspecialchars($text); + return drupal_specialchars($text, 0); } function check_query($text) { |