X-Git-Url: https://git.cyclocoop.org/%242?a=blobdiff_plain;f=maintenance%2FrefreshLinks.php;h=651255b7327b461ecfa2bf869c9f3a221e5f2240;hb=8aa6c9f43e9b54e4157a5feee42229a9a48b1764;hp=a0cd6a94f157a0fd0b34aedf8c358f4404b36539;hpb=f875f3d31867067116641af987dea4511324e96b;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/refreshLinks.php b/maintenance/refreshLinks.php index a0cd6a94f1..651255b732 100644 --- a/maintenance/refreshLinks.php +++ b/maintenance/refreshLinks.php @@ -31,7 +31,7 @@ require_once __DIR__ . '/Maintenance.php'; class RefreshLinks extends Maintenance { public function __construct() { parent::__construct(); - $this->mDescription = "Refresh link tables"; + $this->addDescription( 'Refresh link tables' ); $this->addOption( 'dfn-only', 'Delete links from nonexistent articles only' ); $this->addOption( 'new-only', 'Only affect articles with just a single edit' ); $this->addOption( 'redirects-only', 'Only fix redirects, not all links' ); @@ -73,8 +73,6 @@ class RefreshLinks extends Maintenance { private function doRefreshLinks( $start, $newOnly = false, $end = null, $redirectsOnly = false, $oldRedirectsOnly = false ) { - global $wgParser; - $reportingInterval = 100; $dbr = $this->getDB( DB_SLAVE ); @@ -85,9 +83,6 @@ class RefreshLinks extends Maintenance { // Give extensions a chance to optimize settings Hooks::run( 'MaintenanceRefreshLinksInit', array( $this ) ); - # Don't generate extension images (e.g. Timeline) - $wgParser->clearTagHooks(); - $what = $redirectsOnly ? "redirects" : "links"; if ( $oldRedirectsOnly ) {