mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-02 14:57:37 +02:00
[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:
@@ -253,7 +253,7 @@ foreach ($schema_data as $table_name => $table_data)
|
|||||||
// Do we now need to re-add the fulltext index? ;)
|
// Do we now need to re-add the fulltext index? ;)
|
||||||
if ($table_name == ($prefix . 'posts') && $drop_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}";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user