diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-12-27 13:51:24 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-12-27 13:51:24 +0100 |
commit | 3ba62628dc5077ffdad64832d89c1353421c2ca6 (patch) | |
tree | 9469222a846e09412ab4256e2d776699fa828914 /phpBB/phpbb | |
parent | faad779cf63d339f5d0957eadddbed57a95e0d5f (diff) | |
parent | 2f92bc38e6ca81e64f0846b97df2b13310721453 (diff) | |
download | forums-3ba62628dc5077ffdad64832d89c1353421c2ca6.tar forums-3ba62628dc5077ffdad64832d89c1353421c2ca6.tar.gz forums-3ba62628dc5077ffdad64832d89c1353421c2ca6.tar.bz2 forums-3ba62628dc5077ffdad64832d89c1353421c2ca6.tar.xz forums-3ba62628dc5077ffdad64832d89c1353421c2ca6.zip |
Merge pull request #3205 from rxu/ticket/13406
[ticket/13406] Add a space between the index name and columns list
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r-- | phpBB/phpbb/db/tools.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/db/tools.php b/phpBB/phpbb/db/tools.php index c8d25f23a2..f523b39fb3 100644 --- a/phpBB/phpbb/db/tools.php +++ b/phpBB/phpbb/db/tools.php @@ -2175,7 +2175,7 @@ class tools } // no break case 'mysql_41': - $statements[] = 'ALTER TABLE ' . $table_name . ' ADD INDEX ' . $index_name . '(' . implode(', ', $column) . ')'; + $statements[] = 'ALTER TABLE ' . $table_name . ' ADD INDEX ' . $index_name . ' (' . implode(', ', $column) . ')'; break; case 'mssql': |