mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-30 21:40:43 +02:00
- actually let the user import smilies/icons paks. ;)
- fix TRUNCATE TABLE syntax (mssql does not understand TRUNCATE alone) git-svn-id: file:///svn/phpbb/trunk@5944 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -647,7 +647,7 @@ class fulltext_mysql extends search_backend
|
||||
$db->sql_query('ALTER TABLE ' . POSTS_TABLE . ' ADD FULLTEXT (post_text)');
|
||||
}
|
||||
|
||||
$db->sql_query('TRUNCATE ' . SEARCH_TABLE);
|
||||
$db->sql_query('TRUNCATE TABLE ' . SEARCH_TABLE);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -678,7 +678,7 @@ class fulltext_mysql extends search_backend
|
||||
$db->sql_query('ALTER TABLE ' . POSTS_TABLE . ' DROP INDEX post_text');
|
||||
}
|
||||
|
||||
$db->sql_query('TRUNCATE ' . SEARCH_TABLE);
|
||||
$db->sql_query('TRUNCATE TABLE ' . SEARCH_TABLE);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user