WARNING: HUGE COMMIT
[lhc/web/wiklou.git] / maintenance / rebuildrecentchanges.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 * @file
7 * @todo document
8 * @ingroup Maintenance
9 */
10
11 /** */
12 require_once( "commandLine.inc" );
13 require_once( "rebuildrecentchanges.inc" );
14 $wgTitle = Title::newFromText( "Rebuild recent changes script" );
15
16 $wgDBuser = $wgDBadminuser;
17 $wgDBpassword = $wgDBadminpassword;
18
19 rebuildRecentChangesTable();
20
21 print "Done.\n";
22 exit();
23
24