aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
diff options
context:
space:
mode:
authorDhruv Goel <dhruv.goel92@gmail.com>2012-06-19 20:03:57 +0530
committerDhruv Goel <dhruv.goel92@gmail.com>2012-06-19 20:03:57 +0530
commitbbd3204a9cf15155ccbc1c9270575d2ba44097cb (patch)
tree43808067cbebb7d4eb68e2d22f1266ab60d29516 /phpBB/includes
parent0488d70062a3ae2ff06779dd84cbd65de0445a4d (diff)
downloadforums-bbd3204a9cf15155ccbc1c9270575d2ba44097cb.tar
forums-bbd3204a9cf15155ccbc1c9270575d2ba44097cb.tar.gz
forums-bbd3204a9cf15155ccbc1c9270575d2ba44097cb.tar.bz2
forums-bbd3204a9cf15155ccbc1c9270575d2ba44097cb.tar.xz
forums-bbd3204a9cf15155ccbc1c9270575d2ba44097cb.zip
[ticket/9551] uncomment line and change length to 255
incase of partial collation change post_subject field will be changed back to the default collation and length 255. PHPBB3-9551
Diffstat (limited to 'phpBB/includes')
-rw-r--r--phpBB/includes/search/fulltext_mysql.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/search/fulltext_mysql.php b/phpBB/includes/search/fulltext_mysql.php
index 779ec1d216..bd4c003397 100644
--- a/phpBB/includes/search/fulltext_mysql.php
+++ b/phpBB/includes/search/fulltext_mysql.php
@@ -747,7 +747,7 @@ class fulltext_mysql extends search_backend
{
if ($db->sql_layer == 'mysqli' || version_compare($db->sql_server_info(true), '4.1.3', '>='))
{
- //$alter[] = 'MODIFY post_subject varchar(100) COLLATE utf8_unicode_ci DEFAULT \'\' NOT NULL';
+ $alter[] = 'MODIFY post_subject varchar(255) COLLATE utf8_unicode_ci DEFAULT \'\' NOT NULL';
}
else
{