Remove unused argument
authorjeroendedauw <jeroendedauw@gmail.com>
Thu, 24 Sep 2015 17:10:45 +0000 (19:10 +0200)
committerjeroendedauw <jeroendedauw@gmail.com>
Thu, 24 Sep 2015 17:10:45 +0000 (19:10 +0200)
Change-Id: I7e7cf2b1f99834a140d0213c39cc67cfbc481ec9

includes/db/DatabaseMysqlBase.php

index 1f87055..160c354 100644 (file)
@@ -138,7 +138,7 @@ abstract class DatabaseMysqlBase extends DatabaseBase {
 
                if ( $set ) {
                        // Use doQuery() to avoid opening implicit transactions (DBO_TRX)
-                       $success = $this->doQuery( 'SET ' . implode( ', ', $set ), __METHOD__ );
+                       $success = $this->doQuery( 'SET ' . implode( ', ', $set ) );
                        if ( !$success ) {
                                wfLogDBError(
                                        'Error setting MySQL variables on server {db_server} (check $wgSQLMode)',