[ticket/10192] Add missing semicolon

if the index has to be recreated it will run into the private message
table query.

PHPBB3-10192
This commit is contained in:
Erik Frèrejean 2011-05-23 11:00:58 +02:00
parent 0d407f10d0
commit b5e5ed0033

View file

@ -253,7 +253,7 @@ foreach ($schema_data as $table_name => $table_data)
// Do we now need to re-add the fulltext index? ;)
if ($table_name == ($prefix . 'posts') && $drop_index)
{
echo "ALTER TABLE $table_name ADD FULLTEXT (post_subject), ADD FULLTEXT (post_text), ADD FULLTEXT post_content (post_subject, post_text){$newline}";
echo "ALTER TABLE $table_name ADD FULLTEXT (post_subject), ADD FULLTEXT (post_text), ADD FULLTEXT post_content (post_subject, post_text);{$newline}";
}
}