aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/db/tools.php
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-04-29 14:11:29 +0200
committerJoas Schilling <nickvergessen@gmx.de>2014-05-02 15:45:22 +0200
commitb5267d97f43213269b7b3ae1c153d911cebda385 (patch)
tree62ac12759abed58ba8341a81636e87918338af76 /phpBB/phpbb/db/tools.php
parent07042e484e34115a89985fcd7841c75b1b6135a9 (diff)
downloadforums-b5267d97f43213269b7b3ae1c153d911cebda385.tar
forums-b5267d97f43213269b7b3ae1c153d911cebda385.tar.gz
forums-b5267d97f43213269b7b3ae1c153d911cebda385.tar.bz2
forums-b5267d97f43213269b7b3ae1c153d911cebda385.tar.xz
forums-b5267d97f43213269b7b3ae1c153d911cebda385.zip
[feature/sqlite3] Fix sql_index_drop() for sqlite3
PHPBB3-9728
Diffstat (limited to 'phpBB/phpbb/db/tools.php')
-rw-r--r--phpBB/phpbb/db/tools.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/db/tools.php b/phpBB/phpbb/db/tools.php
index a462b2fdc7..9b205de7ea 100644
--- a/phpBB/phpbb/db/tools.php
+++ b/phpBB/phpbb/db/tools.php
@@ -2048,7 +2048,7 @@ class tools
case 'oracle':
case 'postgres':
case 'sqlite':
- case' sqlite3':
+ case 'sqlite3':
$statements[] = 'DROP INDEX ' . $table_name . '_' . $index_name;
break;
}