From: Platonides Date: Thu, 2 Jun 2011 16:10:48 +0000 (+0000) Subject: Fix for r89263: this to $this X-Git-Tag: 1.31.0-rc.0~29769 X-Git-Url: http://git.cyclocoop.org/%7B%7B%20url_for%28%27admin_vote_del%27%2C%20idvote=vote.voteid%29%20%7D%7D?a=commitdiff_plain;h=b83905dae39e11383233a92ebc3a265155585fe9;p=lhc%2Fweb%2Fwiklou.git Fix for r89263: this to $this --- 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(); } }