From 2610190674b22b66b782c5451246a9e8b5522c34 Mon Sep 17 00:00:00 2001 From: Jake Dallimore Date: Thu, 21 Sep 2017 15:18:21 +0800 Subject: [PATCH] MDL-59581 database: remove mssql reference from top level files --- config-dist.php | 2 +- install.php | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/config-dist.php b/config-dist.php index 5308052c915..6903e74855d 100644 --- a/config-dist.php +++ b/config-dist.php @@ -38,7 +38,7 @@ $CFG = new stdClass(); // will be stored. This database must already have been created // // and a username/password created to access it. // -$CFG->dbtype = 'pgsql'; // 'pgsql', 'mariadb', 'mysqli', 'mssql', 'sqlsrv' or 'oci' +$CFG->dbtype = 'pgsql'; // 'pgsql', 'mariadb', 'mysqli', 'sqlsrv' or 'oci' $CFG->dblibrary = 'native'; // 'native' only at the moment $CFG->dbhost = 'localhost'; // eg 'localhost' or 'db.isp.com' or IP $CFG->dbname = 'moodle'; // database name, eg moodle diff --git a/install.php b/install.php index 8868c6afa94..e7f8de7c7cf 100644 --- a/install.php +++ b/install.php @@ -483,7 +483,6 @@ if ($config->stage == INSTALL_DATABASETYPE) { 'pgsql' => moodle_database::get_driver_instance('pgsql', 'native'), 'oci' => moodle_database::get_driver_instance('oci', 'native'), 'sqlsrv' => moodle_database::get_driver_instance('sqlsrv', 'native'), // MS SQL*Server PHP driver - 'mssql' => moodle_database::get_driver_instance('mssql', 'native'), // FreeTDS driver ); echo '
';