From a4fa3604e76cc3bdd6e35a21f82eac72b9aa7a64 Mon Sep 17 00:00:00 2001 From: Damyon Wiese Date: Tue, 26 Aug 2014 12:32:44 +0800 Subject: [PATCH] MDL-46235 Admin: Fix typos in mysql_compressed_rows.php cli script --- admin/cli/mysql_compressed_rows.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/admin/cli/mysql_compressed_rows.php b/admin/cli/mysql_compressed_rows.php index 6c2c411d942..92aa9dbf475 100644 --- a/admin/cli/mysql_compressed_rows.php +++ b/admin/cli/mysql_compressed_rows.php @@ -139,7 +139,7 @@ if (!empty($options['info'])) { try { $DB->execute("SET GLOBAL innodb_file_per_table=1"); } catch (dml_exception $e) { - echo "Cannot enable GLOBAL innodb_file_per_table setting, use --sqhowsql option and execute the statements manually."; + echo "Cannot enable GLOBAL innodb_file_per_table setting, use --showsql option and execute the statements manually."; throw $e; } } @@ -147,7 +147,7 @@ if (!empty($options['info'])) { try { $DB->execute("SET GLOBAL innodb_file_format=Barracuda"); } catch (dml_exception $e) { - echo "Cannot change GLOBAL innodb_file_format setting, use --sqhowsql option and execute the statements manually."; + echo "Cannot change GLOBAL innodb_file_format setting, use --showsql option and execute the statements manually."; throw $e; } }