From b14d8978f8a2a95c49906962cb3f04e32674fdfb Mon Sep 17 00:00:00 2001 From: Tim Starling Date: Tue, 24 Feb 2004 00:10:32 +0000 Subject: [PATCH] more types of corruption fixed --- maintenance/refreshLinks.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/maintenance/refreshLinks.php b/maintenance/refreshLinks.php index c444ab050a..e25b09b269 100644 --- a/maintenance/refreshLinks.php +++ b/maintenance/refreshLinks.php @@ -17,7 +17,9 @@ $end = $row->m; print("Refreshing link table. Starting from cur_id $start of $end.\n"); +# Don't generate TeX PNGs (lack of a sensible current directory causes errors anyway) $wgUser->setOption("math", 3); + for ($id = $start; $id <= $end; $id++) { if ( !($id % REPORTING_INTERVAL) ) { print "$id\n"; @@ -33,11 +35,12 @@ for ($id = $start; $id <= $end; $id++) { $text = $wgArticle->getContent( true ); @$wgOut->addWikiText( $text ); + $wgLinkCache->saveToLinkscc(); $linksUpdate = new LinksUpdate( $id, $wgTitle ); $linksUpdate->doDumbUpdate(); + $linksUpdate->fixBrokenLinks(); } - exit(); ?> -- 2.20.1