From 29c2ab3da0d561428f1fc969daadcac463e675b6 Mon Sep 17 00:00:00 2001 From: umherirrender Date: Tue, 7 Jan 2014 19:54:27 +0100 Subject: [PATCH] DatabaseInstaller::setVarsFromRequest needs array Method is not marked as var args. Bug: 58434 Follow-Up: I920b0231db1b70b68c6c8907257c288a0e112668 Change-Id: Ief7f7c06e75efbe7ae1da13f5021a9062483f690 --- includes/installer/OracleInstaller.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/installer/OracleInstaller.php b/includes/installer/OracleInstaller.php index 113dce6f7c..9e692ea4eb 100644 --- a/includes/installer/OracleInstaller.php +++ b/includes/installer/OracleInstaller.php @@ -91,12 +91,12 @@ class OracleInstaller extends DatabaseInstaller { public function submitConnectForm() { // Get variables from the request - $newValues = $this->setVarsFromRequest( + $newValues = $this->setVarsFromRequest( array( 'wgDBserver', 'wgDBprefix', 'wgDBuser', 'wgDBpassword' - ); + ) ); $this->parent->setVar( 'wgDBname', $this->getVar( 'wgDBuser' ) ); // Validate them -- 2.20.1