diff options
author | Nils Adermann <naderman@naderman.de> | 2007-04-22 17:12:31 +0000 |
---|---|---|
committer | Nils Adermann <naderman@naderman.de> | 2007-04-22 17:12:31 +0000 |
commit | 5742dcd68a674b31b91fc39978aeaf6d74c48ceb (patch) | |
tree | 0116689029e3212efa7294568bbd273aabef9bc8 /phpBB/language | |
parent | 550f270a0027e67a0eb19d99fbe54d6045696a0b (diff) | |
download | forums-5742dcd68a674b31b91fc39978aeaf6d74c48ceb.tar forums-5742dcd68a674b31b91fc39978aeaf6d74c48ceb.tar.gz forums-5742dcd68a674b31b91fc39978aeaf6d74c48ceb.tar.bz2 forums-5742dcd68a674b31b91fc39978aeaf6d74c48ceb.tar.xz forums-5742dcd68a674b31b91fc39978aeaf6d74c48ceb.zip |
- removed unneeded code from fulltext_mysql [Bug #9947]
- an additional combined index on post_subject and post_text is necessary for fulltext_mysql [Bug #9818]
- added phrase searching support to fulltext_mysql while fixing some minor bugs in the keyword processing code, originally intended to do this about a year ago when I switched from split_words array to search_query string in the search backend interface, so finally it's there
git-svn-id: file:///svn/phpbb/trunk@7385 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/language')
-rw-r--r-- | phpBB/language/en/acp/search.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/language/en/acp/search.php b/phpBB/language/en/acp/search.php index 7f1c5c708b..af27a20f6e 100644 --- a/phpBB/language/en/acp/search.php +++ b/phpBB/language/en/acp/search.php @@ -51,6 +51,7 @@ $lang = array_merge($lang, array( 'FULLTEXT_MYSQL_NOT_MYISAM' => 'MySQL fulltext indexes can only be used with MyISAM tables.', 'FULLTEXT_MYSQL_SUBJECT_CARDINALITY' => 'Cardinality of the post_subject fulltext index (estimate of unique values)', 'FULLTEXT_MYSQL_TEXT_CARDINALITY' => 'Cardinality of the post_text fulltext index (estimate of unique values)', + 'FULLTEXT_MYSQL_COMBINED_CARDINALITY' => 'Cardinality of the post_content fulltext index (estimate of unique values)', 'FULLTEXT_MYSQL_TOTAL_POSTS' => 'Total number of indexed posts', 'FULLTEXT_MYSQL_MBSTRING' => 'Support for non-latin UTF-8 characters using mbstring:', 'FULLTEXT_MYSQL_PCRE' => 'Support for non-latin UTF-8 characters using PCRE:', |