aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/database_update.php
diff options
context:
space:
mode:
authorOleg Pudeyev <oleg@bsdpower.com>2012-04-05 17:34:37 -0400
committerOleg Pudeyev <oleg@bsdpower.com>2012-04-05 17:34:37 -0400
commit03e382f99c61c12655998ac8bd798fca7a34c099 (patch)
tree8e8713e037d4bc25c4c007ad9376522b8cdb937e /phpBB/install/database_update.php
parentb9324577aca6f7f7632b609e975e510e25d8ec86 (diff)
downloadforums-03e382f99c61c12655998ac8bd798fca7a34c099.tar
forums-03e382f99c61c12655998ac8bd798fca7a34c099.tar.gz
forums-03e382f99c61c12655998ac8bd798fca7a34c099.tar.bz2
forums-03e382f99c61c12655998ac8bd798fca7a34c099.tar.xz
forums-03e382f99c61c12655998ac8bd798fca7a34c099.zip
[ticket/10605] Fix syntax error in database updater.
PHPBB3-10605
Diffstat (limited to 'phpBB/install/database_update.php')
-rw-r--r--phpBB/install/database_update.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php
index b6298ca651..6088a58fc4 100644
--- a/phpBB/install/database_update.php
+++ b/phpBB/install/database_update.php
@@ -2041,7 +2041,7 @@ function change_database_data(&$no_updates, $version)
'ON' => 'p.msg_id = t.msg_id',
),
),
- 'WHERE' => 't.user_id IS NULL';
+ 'WHERE' => 't.user_id IS NULL');
$sql = $db->sql_build_query('SELECT', $sql_array);
do