From 9a7e40d14261509574a9a9b1c98de295b4de4314 Mon Sep 17 00:00:00 2001 From: David M Date: Wed, 18 Apr 2007 21:11:17 +0000 Subject: [PATCH] forgot to make the actual change :P git-svn-id: file:///svn/phpbb/trunk@7372 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/includes/search/fulltext_mysql.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/phpBB/includes/search/fulltext_mysql.php b/phpBB/includes/search/fulltext_mysql.php index e4d1a37aa8..a106f40abf 100644 --- a/phpBB/includes/search/fulltext_mysql.php +++ b/phpBB/includes/search/fulltext_mysql.php @@ -697,7 +697,7 @@ class fulltext_mysql extends search_backend } else { - $alter[] = 'MODIFY post_subject blob NOT NULL'; + $alter[] = 'MODIFY post_subject text NOT NULL'; } $alter[] = 'ADD FULLTEXT (post_subject)'; } @@ -710,7 +710,7 @@ class fulltext_mysql extends search_backend } else { - $alter[] = 'MODIFY post_text blob NOT NULL'; + $alter[] = 'MODIFY post_text mediumtext NOT NULL'; } $alter[] = 'ADD FULLTEXT (post_text)'; }