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 dd50650 commit ccb442fCopy full SHA for ccb442f
install/lib/installer_base.lib.php
@@ -267,10 +267,10 @@ public function check_mysql_version() {
267
global $conf;
268
269
$min_mariadb_version = '10.0.5';
270
- $min_mysql_version = '8.0.0';
+ $min_mysql_version = '8.0.4';
271
272
$rec = $this->db->queryOneRecord('SELECT VERSION() as mysql_version;');
273
- $version = if(is_array($rec))? $rec['mysql_version']: '0';
+ $version = (is_array($rec))? $rec['mysql_version']: '0';
274
275
if(strpos($version,'MariaDB')) {
276
// We have MariaDB
0 commit comments