mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
Merge remote-tracking branch 'erikfrerejean/ticket/10192' into develop-olympus
* erikfrerejean/ticket/10192: [ticket/10192] Add missing semicolon
This commit is contained in:
commit
7da88f9103
1 changed files with 1 additions and 1 deletions
|
@ -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}";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue