From f0b1c6221aa58131dab775c690e13d1711775548 Mon Sep 17 00:00:00 2001 From: Florian Schaal Date: Sat, 28 Jan 2017 09:03:49 +0100 Subject: [PATCH] Fix #4061 clarified sql-check during install / updates --- install/lib/installer_base.lib.php | 2 +- install/lib/update.lib.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/install/lib/installer_base.lib.php b/install/lib/installer_base.lib.php index cda386c48..9283a81f0 100644 --- a/install/lib/installer_base.lib.php +++ b/install/lib/installer_base.lib.php @@ -229,7 +229,7 @@ class installer_base { if ($check_sql_mode['@@sql_mode'] != '' && $check_sql_mode['@@sql_mode'] != 'NO_ENGINE_SUBSTITUTION') { echo "Wrong SQL-mode. You should use NO_ENGINE_SUBSTITUTION. Add\n\n"; echo " sql-mode=\"NO_ENGINE_SUBSTITUTION\"\n\n"; - echo"to the mysqld-section in your mysql-config and restart mysqld afterwards\n"; + echo"to the mysqld-section in your mysql-config on this server and restart mysqld afterwards\n"; die(); } diff --git a/install/lib/update.lib.php b/install/lib/update.lib.php index 581e2d69c..7c30bc676 100644 --- a/install/lib/update.lib.php +++ b/install/lib/update.lib.php @@ -128,7 +128,7 @@ function updateDbAndIni() { if ($check_sql_mode['@@sql_mode'] != '' && $check_sql_mode['@@sql_mode'] != 'NO_ENGINE_SUBSTITUTION') { echo "Wrong SQL-mode. You should use NO_ENGINE_SUBSTITUTION. Add\n\n"; echo " sql-mode=\"NO_ENGINE_SUBSTITUTION\"\n\n"; - echo"to the mysqld-section in your mysql-config and restart mysqld afterwards\n"; + echo"to the mysqld-section in your mysql-config on this server and restart mysqld afterwards\n"; die(); } -- GitLab