remove accidentally left-in debugging output
[lhc/web/wiklou.git] / maintenance / rebuildlinks.php
1 <?php
2
3 # Rebuild link tracking tables from scratch. This takes several
4 # hours, depending on the database size and server configuration.
5
6 require_once( "commandLine.inc" );
7 require_once( "./rebuildlinks.inc" );
8
9 $wgTitle = Title::newFromText( "Rebuild links script" );
10
11 $wgDBuser = $wgDBadminuser;
12 $wgDBpassword = $wgDBadminpassword;
13
14 rebuildLinkTables();
15
16 print "Done.\n";
17 exit();
18
19 ?>