aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/includes/usercp_email.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/usercp_email.php b/phpBB/includes/usercp_email.php
index 688adaec0d..1ffcf6be71 100644
--- a/phpBB/includes/usercp_email.php
+++ b/phpBB/includes/usercp_email.php
@@ -66,7 +66,7 @@ if ( $result = $db->sql_query($sql) )
if ( !empty($HTTP_POST_VARS['subject']) )
{
- $subject = trim(strip_tags(stripslashes($HTTP_POST_VARS['subject'])));
+ $subject = trim(stripslashes($HTTP_POST_VARS['subject']));
}
else
{
@@ -76,7 +76,7 @@ if ( $result = $db->sql_query($sql) )
if ( !empty($HTTP_POST_VARS['message']) )
{
- $message = trim(strip_tags(stripslashes($HTTP_POST_VARS['message'])));
+ $message = trim(stripslashes($HTTP_POST_VARS['message']));
}
else
{