Fix for r89263: this to $this
authorPlatonides <platonides@users.mediawiki.org>
Thu, 2 Jun 2011 16:10:48 +0000 (16:10 +0000)
committerPlatonides <platonides@users.mediawiki.org>
Thu, 2 Jun 2011 16:10:48 +0000 (16:10 +0000)
includes/installer/DatabaseUpdater.php

index 3a4c716..2d863db 100644 (file)
@@ -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();
                        }
                }