From b852bd954cf7df3d47ed1df435181595d7c12e29 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Sat, 25 Jun 2005 20:54:49 +0000 Subject: [PATCH] * (bug 2515) Fix incremental link table update --- RELEASE-NOTES | 1 + includes/LinkCache.php | 1 + 2 files changed, 2 insertions(+) diff --git a/RELEASE-NOTES b/RELEASE-NOTES index f45092b479..e2bd64e069 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -333,6 +333,7 @@ Various bugfixes, small features, and a few experimental things: * (bug 2506) Updated the Nynorsk translation * (bug 996) Replace $wgWhitelistEdit with 'edit' permission; fixup UPGRADE documentation about edit and read whitelists. +* (bug 2515) Fix incremental link table update === Caveats === diff --git a/includes/LinkCache.php b/includes/LinkCache.php index ef275ca7a1..bf05ac4154 100644 --- a/includes/LinkCache.php +++ b/includes/LinkCache.php @@ -330,6 +330,7 @@ class LinkCache { swap( $this->mGoodLinks, $this->mOldGoodLinks ); swap( $this->mBadLinks, $this->mOldBadLinks ); swap( $this->mImageLinks, $this->mOldImageLinks ); + swap( $this->mPageLinks, $this->mOldPageLinks ); } } -- 2.20.1