From b83905dae39e11383233a92ebc3a265155585fe9 Mon Sep 17 00:00:00 2001 From: Platonides Date: Thu, 2 Jun 2011 16:10:48 +0000 Subject: [PATCH] Fix for r89263: this to $this --- includes/installer/DatabaseUpdater.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/installer/DatabaseUpdater.php b/includes/installer/DatabaseUpdater.php index 3a4c716c55..2d863dbc35 100644 --- a/includes/installer/DatabaseUpdater.php +++ b/includes/installer/DatabaseUpdater.php @@ -251,7 +251,7 @@ abstract class DatabaseUpdater { $this->runUpdates( $this->getOldGlobalUpdates(), false ); $this->runUpdates( $this->getExtensionUpdates(), true ); foreach ( $this->getExtensionUpdaters() as $updaterClass ) { - $eupdater = new $updaterClass(this); + $eupdater = new $updaterClass( $this ); $eupdater->doUpdates(); } } -- 2.20.1