aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/search/fulltext_mysql.php
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2013-10-10 23:59:05 +0200
committerAndreas Fischer <bantu@phpbb.com>2013-10-10 23:59:05 +0200
commit79928ebf432d03f5ec3a55a34468ea089586a568 (patch)
tree383c5c7edc355b18caa07d95a252159d6a7d146d /phpBB/phpbb/search/fulltext_mysql.php
parent353ac33d5cea1752047779eb8c70c7ce3a64b6c8 (diff)
downloadforums-79928ebf432d03f5ec3a55a34468ea089586a568.tar
forums-79928ebf432d03f5ec3a55a34468ea089586a568.tar.gz
forums-79928ebf432d03f5ec3a55a34468ea089586a568.tar.bz2
forums-79928ebf432d03f5ec3a55a34468ea089586a568.tar.xz
forums-79928ebf432d03f5ec3a55a34468ea089586a568.zip
[ticket/11621] Swap columns of post_content index.
PHPBB3-11621
Diffstat (limited to 'phpBB/phpbb/search/fulltext_mysql.php')
-rw-r--r--phpBB/phpbb/search/fulltext_mysql.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/search/fulltext_mysql.php b/phpBB/phpbb/search/fulltext_mysql.php
index 23f27e65d0..260b07fdf9 100644
--- a/phpBB/phpbb/search/fulltext_mysql.php
+++ b/phpBB/phpbb/search/fulltext_mysql.php
@@ -792,7 +792,7 @@ class fulltext_mysql extends \phpbb\search\base
$alter[] = 'MODIFY post_text mediumtext NOT NULL';
}
- $alter[] = 'ADD FULLTEXT post_content (post_subject, post_text)';
+ $alter[] = 'ADD FULLTEXT post_content (post_text, post_subject)';
}
if (sizeof($alter))