From 28144261f09d2172dd9a9cfe00a8c7b58765fb17 Mon Sep 17 00:00:00 2001 From: umherirrender Date: Sat, 11 Jan 2014 23:57:47 +0100 Subject: [PATCH] Call Installer::getDBTypes() static Change-Id: Ie819c7c6be39c4beab0fca30216632b3e87178a8 --- includes/installer/WebInstallerPage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/installer/WebInstallerPage.php b/includes/installer/WebInstallerPage.php index 200e4cd8fc..d4b3d65713 100644 --- a/includes/installer/WebInstallerPage.php +++ b/includes/installer/WebInstallerPage.php @@ -484,7 +484,7 @@ class WebInstaller_DBConnect extends WebInstallerPage { // Messages: config-dbsupport-mysql, config-dbsupport-postgres, config-dbsupport-oracle, // config-dbsupport-sqlite $dbSupport = ''; - foreach ( $this->parent->getDBTypes() as $type ) { + foreach ( Installer::getDBTypes() as $type ) { $dbSupport .= wfMessage( "config-dbsupport-$type" )->plain() . "\n"; } $this->addHTML( $this->parent->getInfoBox( -- 2.20.1