From: Brion Vibber Date: Sat, 25 Jun 2005 20:54:49 +0000 (+0000) Subject: * (bug 2515) Fix incremental link table update X-Git-Tag: 1.5.0beta1~23 X-Git-Url: http://git.cyclocoop.org/%24self?a=commitdiff_plain;h=b852bd954cf7df3d47ed1df435181595d7c12e29;p=lhc%2Fweb%2Fwiklou.git * (bug 2515) Fix incremental link table update --- 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 ); } }