mirror of
https://github.com/nextcloud/server.git
synced 2026-06-09 00:32:29 -04:00
Merge pull request #27731 from ZitronePlus/master
This commit is contained in:
commit
b2c32b7e6c
1 changed files with 1 additions and 1 deletions
|
|
@ -63,7 +63,7 @@ class SupportedDatabase {
|
|||
case MySQL57Platform::class: # extends MySQLPlatform
|
||||
case MariaDb1027Platform::class: # extends MySQLPlatform
|
||||
case MySQLPlatform::class:
|
||||
$result = $this->connection->prepare('SHOW VARIABLES LIKE "version";');
|
||||
$result = $this->connection->prepare("SHOW VARIABLES LIKE 'version';");
|
||||
$result->execute();
|
||||
$row = $result->fetch();
|
||||
$version = strtolower($row['Value']);
|
||||
|
|
|
|||
Loading…
Reference in a new issue