From 45ebd3f0e6e3749bb911b58bd585e5b23e61837f Mon Sep 17 00:00:00 2001 From: "Alexia E. Smith" Date: Wed, 25 May 2016 14:52:46 -0500 Subject: [PATCH] Make the call match the function definition. Change-Id: I381fbc9b6ddbf27f4f7a79dc19eec0547e0fddbb --- includes/installer/MysqlInstaller.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/installer/MysqlInstaller.php b/includes/installer/MysqlInstaller.php index 799ca58024..1bd3f51de2 100644 --- a/includes/installer/MysqlInstaller.php +++ b/includes/installer/MysqlInstaller.php @@ -540,7 +540,7 @@ class MysqlInstaller extends DatabaseInstaller { foreach ( $createHostList as $host ) { $fullName = $this->buildFullUserName( $dbUser, $host ); - if ( !$this->userDefinitelyExists( $dbUser, $host ) ) { + if ( !$this->userDefinitelyExists( $host, $dbUser ) ) { try { $this->db->begin( __METHOD__ ); $this->db->query( "CREATE USER $fullName IDENTIFIED BY $escPass", __METHOD__ ); -- 2.20.1