diff options
| author | Ludovic Arnaud <ludovic_arnaud@users.sourceforge.net> | 2003-04-13 23:20:26 +0000 |
|---|---|---|
| committer | Ludovic Arnaud <ludovic_arnaud@users.sourceforge.net> | 2003-04-13 23:20:26 +0000 |
| commit | 25711806b398fe404c281730adccd5a82793be16 (patch) | |
| tree | 05b163cdd6f8651f785146b29e6b7c344a8ea211 /phpBB/includes/functions_posting.php | |
| parent | 39dd567f90bb5a4f688301b26e1dfaf691cd53a4 (diff) | |
| download | forums-25711806b398fe404c281730adccd5a82793be16.tar forums-25711806b398fe404c281730adccd5a82793be16.tar.gz forums-25711806b398fe404c281730adccd5a82793be16.tar.bz2 forums-25711806b398fe404c281730adccd5a82793be16.tar.xz forums-25711806b398fe404c281730adccd5a82793be16.zip | |
$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
Diffstat (limited to 'phpBB/includes/functions_posting.php')
| -rw-r--r-- | phpBB/includes/functions_posting.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_posting.php b/phpBB/includes/functions_posting.php index 9480c153c1..0dd91d4f78 100644 --- a/phpBB/includes/functions_posting.php +++ b/phpBB/includes/functions_posting.php @@ -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'] )); } |
