From: Alexandre Emsenhuber Date: Fri, 3 Sep 2010 18:53:19 +0000 (+0000) Subject: Moved OracleUpdater to its own file so that I can stop asking me why this file is... X-Git-Tag: 1.31.0-rc.0~35196 X-Git-Url: http://git.cyclocoop.org/wiki/%7B%7Bpath%7D%7Dmw-config/index.php?a=commitdiff_plain;h=58814d936565eb2093420f7e47b5d8ae7cbb73fa;p=lhc%2Fweb%2Fwiklou.git Moved OracleUpdater to its own file so that I can stop asking me why this file is missing --- diff --git a/includes/AutoLoader.php b/includes/AutoLoader.php index d7c180550c..d6332fd9a6 100644 --- a/includes/AutoLoader.php +++ b/includes/AutoLoader.php @@ -441,7 +441,7 @@ $wgAutoloadLocalClasses = array( 'SqliteInstaller' => 'includes/installer/SqliteInstaller.php', 'SqliteUpdater' => 'includes/installer/SqliteUpdater.php', 'OracleInstaller' => 'includes/installer/OracleInstaller.php', - 'OracleUpdater' => 'includes/installer/DatabaseUpdater.php', + 'OracleUpdater' => 'includes/installer/OracleUpdater.php', 'Update' => 'includes/installer/Update.php', # includes/job diff --git a/includes/installer/DatabaseUpdater.php b/includes/installer/DatabaseUpdater.php index 7a321262c3..0dc50b1b5c 100644 --- a/includes/installer/DatabaseUpdater.php +++ b/includes/installer/DatabaseUpdater.php @@ -239,9 +239,3 @@ abstract class DatabaseUpdater { } } } - -class OracleUpdater extends DatabaseUpdater { - protected function getCoreUpdateList() { - return array(); - } -} diff --git a/includes/installer/OracleUpdater.php b/includes/installer/OracleUpdater.php new file mode 100644 index 0000000000..e96d181ecf --- /dev/null +++ b/includes/installer/OracleUpdater.php @@ -0,0 +1,19 @@ +