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/search | |
| 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/search')
| -rw-r--r-- | phpBB/includes/search/fulltext_mysql.php | 2 | ||||
| -rwxr-xr-x | phpBB/includes/search/fulltext_native.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/search/fulltext_mysql.php b/phpBB/includes/search/fulltext_mysql.php index 16a1b6c1c2..0f69d00a66 100644 --- a/phpBB/includes/search/fulltext_mysql.php +++ b/phpBB/includes/search/fulltext_mysql.php @@ -555,7 +555,7 @@ class fulltext_mysql extends search_backend * * @param string $mode contains the post mode: edit, post, reply, quote ... */ - function index($mode, $post_id, &$message, &$subject, $poster_id, $forum_id) + function index($mode, $post_id, &$message, &$subject, $encoding, $poster_id, $forum_id) { global $db; diff --git a/phpBB/includes/search/fulltext_native.php b/phpBB/includes/search/fulltext_native.php index 4a7edc7f16..35c73c8bb7 100755 --- a/phpBB/includes/search/fulltext_native.php +++ b/phpBB/includes/search/fulltext_native.php @@ -750,7 +750,7 @@ class fulltext_native extends search_backend * * @param string $mode contains the post mode: edit, post, reply, quote ... */ - function index($mode, $post_id, &$message, &$subject, $poster_id, $forum_id) + function index($mode, $post_id, &$message, &$subject, $encoding, $poster_id, $forum_id) { global $config, $db; |
