We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9088f8 commit 35f449dCopy full SHA for 35f449d
install/lib/installer_base.lib.php
@@ -266,9 +266,9 @@ public function check_prerequisites() {
266
public function check_mysql_version() {
267
global $conf;
268
269
- // Set MariaDB version to 10.0.5 after CentOS 7 support ended to allow preg_* functions in SQL queries
+ // Set MariaDB version to 10.0.5 and MySQL version to 8.0.4 after CentOS 7 support ended to allow preg_* functions in SQL queries
270
$min_mariadb_version = '5.5';
271
- $min_mysql_version = '8.0.4';
+ $min_mysql_version = '5.5';
272
273
$rec = $this->db->queryOneRecord('SELECT VERSION() as mysql_version');
274
if(is_array($rec)) {
0 commit comments