From: Aaron Schulz Date: Wed, 17 May 2017 18:56:40 +0000 (-0700) Subject: Add missing doUpdates() call to refreshLinks.php X-Git-Tag: 1.31.0-rc.0~3222^2 X-Git-Url: http://git.cyclocoop.org/%40spipnet%40?a=commitdiff_plain;h=0916fa76e81dbcfbbe5fd8ed529b25d4cf358e3a;p=lhc%2Fweb%2Fwiklou.git Add missing doUpdates() call to refreshLinks.php Follows-up b8b01aa589ce which accidentally removed this call. Bug: T157545 Change-Id: Id4efdccb60e7829269df601b83f64288f6190db4 --- diff --git a/maintenance/refreshLinks.php b/maintenance/refreshLinks.php index a6cd54853e..9f3552a678 100644 --- a/maintenance/refreshLinks.php +++ b/maintenance/refreshLinks.php @@ -278,6 +278,7 @@ class RefreshLinks extends Maintenance { $page->getTitle(), /* $old = */ null, /* $recursive = */ false ); foreach ( $updates as $update ) { DeferredUpdates::addUpdate( $update ); + DeferredUpdates::doUpdates(); } }