diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-02-07 16:09:31 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-02-07 17:03:43 +0100 |
commit | dbec143f09f32832a52fb507ababb84518721370 (patch) | |
tree | e71b8ab8519c110e486016824d896be2274d3756 /core | |
parent | 60cba9962da352d96489e4eb4110612cac49966a (diff) | |
download | nextcloud-server-dbec143f09f32832a52fb507ababb84518721370.tar.gz nextcloud-server-dbec143f09f32832a52fb507ababb84518721370.zip |
Change MySQL to MySQL/MariaDB in the frontend
Fix issue #6269
Diffstat (limited to 'core')
-rw-r--r-- | core/setup/controller.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/setup/controller.php b/core/setup/controller.php index 58ed4d28dc0..697408cfb57 100644 --- a/core/setup/controller.php +++ b/core/setup/controller.php @@ -91,7 +91,7 @@ class Controller { $databases['sqlite'] = 'SQLite'; } if ($hasMySQL) { - $databases['mysql'] = 'MySQL'; + $databases['mysql'] = 'MySQL/MariaDB'; } if ($hasPostgreSQL) { $databases['pgsql'] = 'PostgreSQL'; |