1
0
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:
Meik Sievertsen
2006-05-20 14:20:12 +00:00
parent f77c0f0541
commit dbb6b3f6cf
5 changed files with 13 additions and 11 deletions

View File

@@ -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);
}
/**