1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-03-24 01:20:40 +01:00

[ticket/15047] Use brackets due to keyword usage

This commit is contained in:
David Colón 2017-01-25 16:27:59 -05:00
parent b52ee87df8
commit c53054f2b7

View File

@ -477,7 +477,7 @@ class mssql extends tools
{
$statements = array();
$statements[] = 'DROP INDEX ' . $table_name . '.' . $index_name;
$statements[] = 'DROP INDEX [' . $table_name . '].[' . $index_name . ']';
return $this->_sql_run_sql($statements);
}