added PPCustomFrame classes to restore ability to use replaceVariables with a custom...
[lhc/web/wiklou.git] / maintenance / rebuildrecentchanges.php
index 6e342b2..9311d0f 100644 (file)
@@ -1,19 +1,24 @@
 <?php
+/**
+ * Rebuild link tracking tables from scratch.  This takes several
+ * hours, depending on the database size and server configuration.
+ *
+ * @file
+ * @todo document
+ * @ingroup Maintenance
+ */
 
-# Rebuild link tracking tables from scratch.  This takes several
-# hours, depending on the database size and server configuration.
-
+/** */
 require_once( "commandLine.inc" );
-require_once( "./rebuildrecentchanges.inc" );
+require_once( "rebuildrecentchanges.inc" );
 $wgTitle = Title::newFromText( "Rebuild recent changes script" );
 
 $wgDBuser                      = $wgDBadminuser;
 $wgDBpassword          = $wgDBadminpassword;
 
-rebuildRecentChangesTablePass1();
-rebuildRecentChangesTablePass2();
+rebuildRecentChangesTable();
 
 print "Done.\n";
 exit();
 
-?>
+