Skip to content

Commit 35f449d

Browse files
author
Till Brehm
committed
Update installer_base.lib.php
1 parent a9088f8 commit 35f449d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

install/lib/installer_base.lib.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -266,9 +266,9 @@ public function check_prerequisites() {
266266
public function check_mysql_version() {
267267
global $conf;
268268

269-
// Set MariaDB version to 10.0.5 after CentOS 7 support ended to allow preg_* functions in SQL queries
269+
// 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
270270
$min_mariadb_version = '5.5';
271-
$min_mysql_version = '8.0.4';
271+
$min_mysql_version = '5.5';
272272

273273
$rec = $this->db->queryOneRecord('SELECT VERSION() as mysql_version');
274274
if(is_array($rec)) {

0 commit comments

Comments
 (0)