From 9ec87a8ce40317bfb9335f66ffbb812689f7bd8d Mon Sep 17 00:00:00 2001 From: Tim Starling Date: Wed, 12 Apr 2006 04:48:36 +0000 Subject: [PATCH] Use non-recursive mode when doing refreshLinks --- maintenance/refreshLinks.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maintenance/refreshLinks.inc b/maintenance/refreshLinks.inc index fa3c9e64f5..fb513ad773 100644 --- a/maintenance/refreshLinks.inc +++ b/maintenance/refreshLinks.inc @@ -89,7 +89,7 @@ function fixLinksFromArticle( $id ) { $options = new ParserOptions; $parserOutput = $wgParser->parse( $revision->getText(), $wgTitle, $options, true, true, $revision->getId() ); - $update = new LinksUpdate( $wgTitle, $parserOutput ); + $update = new LinksUpdate( $wgTitle, $parserOutput, false ); $update->doUpdate(); $dbw->immediateCommit(); } -- 2.20.1