Replace the call to action=raw with a couple API calls for the main
[lhc/web/wiklou.git] / maintenance / update.php
index 41d9e9c..6c52ef1 100644 (file)
@@ -2,33 +2,45 @@
 /**
  * Run all updaters.
  *
+ * This is used when the database schema is modified and we need to apply patches.
+ *
+ * @file
  * @todo document
- * @package MediaWiki
- * @subpackage Maintenance
- */ 
+ * @ingroup Maintenance
+ */
 
 /** */
-$options = array( 'quick' );
-require_once( "commandLine.inc" );
-require_once( "updaters.inc" );
+$wgUseMasterForMaintenance = true;
+require( "commandLine.inc" );
+require( "updaters.inc" );
+
+# Don't try to load stuff from l10n_cache yet
+$lc = Language::getLocalisationCache();
+$lc->disableBackend();
+
 $wgTitle = Title::newFromText( "MediaWiki database updater" );
-$wgDatabase = Database::newFromParams( $wgDBserver, $wgDBadminuser, $wgDBadminpassword, $wgDBname );
 
-print "Going to run database updates for $wgDBname\n";
+echo( "MediaWiki {$wgVersion} Updater\n\n" );
+
+install_version_checks();
+
+# Attempt to connect to the database as a privileged user
+# This will vomit up an error if there are permissions problems
+$wgDatabase = wfGetDB( DB_MASTER );
+
+print "Going to run database updates for ".wfWikiID()."\n";
 print "Depending on the size of your database this may take a while!\n";
 
 if( !isset( $options['quick'] ) ) {
        print "Abort with control-c in the next five seconds... ";
-       
-       for ($i = 5; $i >= 0; --$i) {
-               echo $i;
-               sleep(1);
-               echo( ($i == 0) ? "\n" : chr(8) );
-       }
+       wfCountDown( 5 );
 }
 
-do_all_updates();
+$shared = isset( $options['doshared'] );
+$purge = !isset( $options['nopurge'] );
+
+do_all_updates( $shared, $purge );
 
 print "Done.\n";
 
-?>
+