bug fix
[mediawiki.git] / maintenance / rebuildlinks.php
blobf47b922dbe3bd9c0d2ed7baef0282b378788a41b
1 <?php
3 # Rebuild link tracking tables from scratch. This takes several
4 # hours, depending on the database size and server configuration.
6 require_once( "commandLine.inc" );
7 require_once( "./rebuildlinks.inc" );
9 $wgTitle = Title::newFromText( "Rebuild links script" );
11 $wgDBuser = $wgDBadminuser;
12 $wgDBpassword = $wgDBadminpassword;
14 rebuildLinkTables();
16 print "Done.\n";
17 exit();