Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@users.noreply.github.com>2021-10-22 13:04:07 +0300
committerGitHub <noreply@github.com>2021-10-22 13:04:07 +0300
commitb2c32b7e6c4a7ea1a248623134a6e681053c5557 (patch)
tree9bbe5e35ca857dae02cfe6a0ad5a0e6c9441c197 /apps
parent09bcb766f4d2dc79259d12bc20a82b36eb816feb (diff)
parent7d0dd31efd6bb32b518016d20b3fbee955c87999 (diff)
Merge pull request #27731 from ZitronePlus/master
Diffstat (limited to 'apps')
-rw-r--r--apps/settings/lib/SetupChecks/SupportedDatabase.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/settings/lib/SetupChecks/SupportedDatabase.php b/apps/settings/lib/SetupChecks/SupportedDatabase.php
index 1684567609b..089fb69bbc9 100644
--- a/apps/settings/lib/SetupChecks/SupportedDatabase.php
+++ b/apps/settings/lib/SetupChecks/SupportedDatabase.php
@@ -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']);