From 7da9911db168967e8227f805c851f33a596a0d02 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Fri, 12 Jan 2018 15:06:50 +0100 Subject: [PATCH] Fix message --- htdocs/install/repair.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/htdocs/install/repair.php b/htdocs/install/repair.php index 3f4fa2d2910..5db07cd1412 100644 --- a/htdocs/install/repair.php +++ b/htdocs/install/repair.php @@ -1036,11 +1036,11 @@ if ($ok && GETPOST('force_utf8_on_tables','alpha')) print ''; print $table; $sql='ALTER TABLE '.$table.' CONVERT TO CHARACTER SET utf8 COLLATE utf8_unicode_ci'; - print $sql; + print ''; if (GETPOST('force_utf8_on_tables','alpha') == 'confirmed') { $resql = $db->query($sql); - print ' - Done ('.$resql.')'; + print ' - Done ('.($resql?'OK':'KO').')'; } else print ' - Disabled'; print '';