From 300e5399f5ca35f34ed75234c97426e1e68cc9e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1t=C3=A9=20Bartus?= Date: Sun, 29 Aug 2021 17:36:33 +0200 Subject: [PATCH] [ticket/16741] Fix coding style issue PHPBB3-16741 --- phpBB/phpbb/db/doctrine/table_helper.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/phpbb/db/doctrine/table_helper.php b/phpBB/phpbb/db/doctrine/table_helper.php index 949931916b..297481743d 100644 --- a/phpBB/phpbb/db/doctrine/table_helper.php +++ b/phpBB/phpbb/db/doctrine/table_helper.php @@ -68,7 +68,7 @@ class table_helper { $doctrine_options['autoincrement'] = true; } - elseif ($dbms_layer === 'mysql' && $column_data[2] === 'true_sort') + else if ($dbms_layer === 'mysql' && $column_data[2] === 'true_sort') { $doctrine_options['platformoptions']['collation'] = 'utf8_unicode_ci'; }