aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--phpBB/install/database_update.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php
index 0737061887..2a361aae26 100644
--- a/phpBB/install/database_update.php
+++ b/phpBB/install/database_update.php
@@ -2043,7 +2043,8 @@ 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