Fixed bug caused in r52944 - where the inclusion of csshover.htc was lost in the...
[mediawiki.git] / maintenance / rebuildrecentchanges.php
blob4231ff7f1a5ad8ddd40de8d692914c5d83ece5d6
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(0);