Handle new includes directory scheme.
[mediawiki.git] / maintenance / rebuildrecentchanges.php
blob9311d0fa94ff7d48b865ef7859107c4313ca7c6a
1 <?php
2 /**
3 * Rebuild link tracking tables from scratch. This takes several
4 * hours, depending on the database size and server configuration.
6 * @file
7 * @todo document
8 * @ingroup Maintenance
9 */
11 /** */
12 require_once( "commandLine.inc" );
13 require_once( "rebuildrecentchanges.inc" );
14 $wgTitle = Title::newFromText( "Rebuild recent changes script" );
16 $wgDBuser = $wgDBadminuser;
17 $wgDBpassword = $wgDBadminpassword;
19 rebuildRecentChangesTable();
21 print "Done.\n";
22 exit();