* DatabaseOracle - throw connection exception instead of debug+false
[lhc/web/wiklou.git] / includes / installer / Installer.php
index be5d85f..f11f091 100644 (file)
@@ -357,6 +357,8 @@ abstract class Installer {
                if( $status->isOK() ) {
                        LBFactory::enableBackend();
                }
+               
+               return $status;
        }
 
        /**
@@ -370,6 +372,17 @@ abstract class Installer {
                return $installer->populateInterwikiTable();
        }
 
+       /**
+        * TODO: document
+        *
+        * @param $installer DatabaseInstaller
+        *
+        * @return Status
+        */
+       public function installMainpage( DatabaseInstaller &$installer ) {
+               return $installer->createMainpage();
+       }
+
        /**
         * Exports all wg* variables stored by the installer into global scope.
         */