1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-06 16:56:44 +02:00

$message is now processed in its unslashed form. Should not break anything...

git-svn-id: file:///svn/phpbb/trunk@3831 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Ludovic Arnaud
2003-04-13 23:20:26 +00:00
parent 39dd567f90
commit 25711806b3
3 changed files with 13 additions and 6 deletions

View File

@@ -783,7 +783,7 @@ function submit_post($mode, $message, $subject, $username, $topic_type, $bbcode_
{
$post_sql = array_merge($post_sql, array(
'post_checksum' => $post_data['message_md5'],
'post_text' => stripslashes($message),
'post_text' => $message,
'post_encoding' => $user->lang['ENCODING']
));
}