Skip to content

Commit 218973b

Browse files
author
Till Brehm
committed
Merge branch 'stable-3.1' into 'stable-3.1'
Fix #4061 clarified sql-check during install / updates See merge request !513
2 parents 45c429e + f0b1c62 commit 218973b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

install/lib/installer_base.lib.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ public function configure_database() {
229229
if ($check_sql_mode['@@sql_mode'] != '' && $check_sql_mode['@@sql_mode'] != 'NO_ENGINE_SUBSTITUTION') {
230230
echo "Wrong SQL-mode. You should use NO_ENGINE_SUBSTITUTION. Add\n\n";
231231
echo " sql-mode=\"NO_ENGINE_SUBSTITUTION\"\n\n";
232-
echo"to the mysqld-section in your mysql-config and restart mysqld afterwards\n";
232+
echo"to the mysqld-section in your mysql-config on this server and restart mysqld afterwards\n";
233233
die();
234234
}
235235

install/lib/update.lib.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ function updateDbAndIni() {
128128
if ($check_sql_mode['@@sql_mode'] != '' && $check_sql_mode['@@sql_mode'] != 'NO_ENGINE_SUBSTITUTION') {
129129
echo "Wrong SQL-mode. You should use NO_ENGINE_SUBSTITUTION. Add\n\n";
130130
echo " sql-mode=\"NO_ENGINE_SUBSTITUTION\"\n\n";
131-
echo"to the mysqld-section in your mysql-config and restart mysqld afterwards\n";
131+
echo"to the mysqld-section in your mysql-config on this server and restart mysqld afterwards\n";
132132
die();
133133
}
134134

0 commit comments

Comments
 (0)