diff options
author | Nils Adermann <naderman@naderman.de> | 2006-07-07 20:38:04 +0000 |
---|---|---|
committer | Nils Adermann <naderman@naderman.de> | 2006-07-07 20:38:04 +0000 |
commit | 97cd5b1c3de8ce063ffbbfed17c36fd6b31f9761 (patch) | |
tree | 16073d3904272ee8da4879788241c232aaff97c2 /phpBB/includes/functions_posting.php | |
parent | c6227ad5b0904c2c61737c8267f71fbc9f543a3b (diff) | |
download | forums-97cd5b1c3de8ce063ffbbfed17c36fd6b31f9761.tar forums-97cd5b1c3de8ce063ffbbfed17c36fd6b31f9761.tar.gz forums-97cd5b1c3de8ce063ffbbfed17c36fd6b31f9761.tar.bz2 forums-97cd5b1c3de8ce063ffbbfed17c36fd6b31f9761.tar.xz forums-97cd5b1c3de8ce063ffbbfed17c36fd6b31f9761.zip |
- fix a stupid bug in style.php
- and we'd also like the post encoding :D
git-svn-id: file:///svn/phpbb/trunk@6153 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 9071b78860..6ae39be7a9 100644 --- a/phpBB/includes/functions_posting.php +++ b/phpBB/includes/functions_posting.php @@ -1844,7 +1844,7 @@ function submit_post($mode, $subject, $username, $topic_type, &$poll, &$data, $u trigger_error($error); } - $search->index($mode, $data['post_id'], $data['message'], $subject, $poster_id, ($topic_type == POST_GLOBAL) ? 0 : $data['forum_id']); + $search->index($mode, $data['post_id'], $data['message'], $subject, $user->lang['ENCODING'], $poster_id, ($topic_type == POST_GLOBAL) ? 0 : $data['forum_id']); } $db->sql_transaction('commit'); |