Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -258,6 +258,7 @@ |
259 | 259 | * (bug 15869) Nostalgia skin does not show page title in printable mode |
260 | 260 | * (bug 15795) Special:Userrights is now listed on Special:SpecialPages when the |
261 | 261 | user can only his rights |
| 262 | +* (bug 15846) Categories "leak" from older revisions in certain circumstances |
262 | 263 | |
263 | 264 | === API changes in 1.14 === |
264 | 265 | |
Index: trunk/phase3/includes/Article.php |
— | — | @@ -3522,7 +3522,7 @@ |
3523 | 3523 | $wgUseFileCache = false; |
3524 | 3524 | } |
3525 | 3525 | |
3526 | | - if ( !wfReadOnly() && $this->mTitle->areRestrictionsCascading() ) { |
| 3526 | + if ( $this->isCurrent() && !wfReadOnly() && $this->mTitle->areRestrictionsCascading() ) { |
3527 | 3527 | // templatelinks table may have become out of sync, |
3528 | 3528 | // especially if using variable-based transclusions. |
3529 | 3529 | // For paranoia, check if things have changed and if |