* (bug 2515) Fix incremental link table update
authorBrion Vibber <brion@users.mediawiki.org>
Sat, 25 Jun 2005 20:54:49 +0000 (20:54 +0000)
committerBrion Vibber <brion@users.mediawiki.org>
Sat, 25 Jun 2005 20:54:49 +0000 (20:54 +0000)
RELEASE-NOTES
includes/LinkCache.php

index f45092b..e2bd64e 100644 (file)
@@ -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 ===
 
index ef275ca..bf05ac4 100644 (file)
@@ -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 );
        }
 }