77816cf8b2c4c56d1a3e3873e53f2949d76ed829
[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 * @todo document
7 * @package MediaWiki
8 * @subpackage 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 rebuildRecentChangesTablePass1();
20 rebuildRecentChangesTablePass2();
21
22 print "Done.\n";
23 exit();
24
25 ?>