diff options
author | David M <davidmj@users.sourceforge.net> | 2007-09-22 21:58:04 +0000 |
---|---|---|
committer | David M <davidmj@users.sourceforge.net> | 2007-09-22 21:58:04 +0000 |
commit | 6ea4a146afd3a70b414d455a0088b058e0a9ec91 (patch) | |
tree | 96770e303d2e044e2583bcfb009948eedd031d51 /phpBB/install/database_update.php | |
parent | 7f65bc98adcde87ebd12dfcc3c8963c3a5ce315b (diff) | |
download | forums-6ea4a146afd3a70b414d455a0088b058e0a9ec91.tar forums-6ea4a146afd3a70b414d455a0088b058e0a9ec91.tar.gz forums-6ea4a146afd3a70b414d455a0088b058e0a9ec91.tar.bz2 forums-6ea4a146afd3a70b414d455a0088b058e0a9ec91.tar.xz forums-6ea4a146afd3a70b414d455a0088b058e0a9ec91.zip |
misc SQLite bugs
git-svn-id: file:///svn/phpbb/trunk@8101 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install/database_update.php')
-rw-r--r-- | phpBB/install/database_update.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php index ef6f2338c5..bf2d3a1c70 100644 --- a/phpBB/install/database_update.php +++ b/phpBB/install/database_update.php @@ -2188,7 +2188,7 @@ function sql_column_remove($dbms, $table_name, $column_name) foreach ($old_table_cols as $declaration) { $entities = preg_split('#\s+#', trim($declaration)); - if ($entities[0] == 'PRIMARY' || $entities[0] === '$column_name') + if ($entities[0] == 'PRIMARY' || $entities[0] === $column_name) { continue; } |