summaryrefslogtreecommitdiff
path: root/includes/function.inc
diff options
context:
space:
mode:
Diffstat (limited to 'includes/function.inc')
-rw-r--r--includes/function.inc3
1 files changed, 1 insertions, 2 deletions
diff --git a/includes/function.inc b/includes/function.inc
index 0080a8432..ddd113844 100644
--- a/includes/function.inc
+++ b/includes/function.inc
@@ -16,8 +16,7 @@ function check_export($message) {
function check_textarea($message) {
global $allowed_html;
- return strip_tags(stripslashes($message), $allowed_html);
- // return htmlspecialchars(strip_tags(stripslashes($message), $allowed_html));
+ return htmlspecialchars(strip_tags(stripslashes($message), $allowed_html));
}
function check_input($message) {