aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2012-06-19 20:09:23 +0200
committerNils Adermann <naderman@naderman.de>2012-06-19 20:09:23 +0200
commit08763ac99e289a77350a541767475b1a73e464e4 (patch)
tree5747cd5a9bc4cbab7c7533299c4920cadcc973db /phpBB/includes
parent4ebcb5319eb419d63b4ac89a7e70bff26ad0b566 (diff)
parentbbd3204a9cf15155ccbc1c9270575d2ba44097cb (diff)
downloadforums-08763ac99e289a77350a541767475b1a73e464e4.tar
forums-08763ac99e289a77350a541767475b1a73e464e4.tar.gz
forums-08763ac99e289a77350a541767475b1a73e464e4.tar.bz2
forums-08763ac99e289a77350a541767475b1a73e464e4.tar.xz
forums-08763ac99e289a77350a541767475b1a73e464e4.zip
Merge remote-tracking branch 'github-dhruvgoel92/ticket/9551' into develop-olympus
* github-dhruvgoel92/ticket/9551: [ticket/9551] uncomment line and change length to 255
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
{