don't just assume we get a valid title object
[lhc/web/wiklou.git] / maintenance / update.php
1 <?php
2 /**
3 * Run all updaters.
4 *
5 * @todo document
6 * @package MediaWiki
7 * @subpackage Maintenance
8 */
9
10 /** */
11 $options = array( 'quick' );
12 require_once( "commandLine.inc" );
13 require_once( "updaters.inc" );
14 $wgTitle = Title::newFromText( "MediaWiki database updater" );
15 $wgDatabase = Database::newFromParams( $wgDBserver, $wgDBadminuser, $wgDBadminpassword, $wgDBname );
16
17 print "Going to run database updates for $wgDBname\n";
18 print "Depending on the size of your database this may take a while!\n";
19
20 if( !isset( $options['quick'] ) ) {
21 print "Abort with control-c in the next five seconds... ";
22
23 for ($i = 5; $i >= 0; --$i) {
24 echo $i;
25 sleep(1);
26 echo( ($i == 0) ? "\n" : chr(8) );
27 }
28 }
29
30 do_all_updates();
31
32 print "Done.\n";
33
34 ?>