Index: trunk/phase3/includes/Title.php |
— | — | @@ -2176,10 +2176,16 @@ |
2177 | 2177 | $linkCache = LinkCache::singleton(); |
2178 | 2178 | $linkCache->clearBadLink( $this->getPrefixedDBkey() ); |
2179 | 2179 | |
2180 | | - if ( $newid === false ) { $this->mArticleID = -1; } |
2181 | | - else { $this->mArticleID = intval( $newid ); } |
| 2180 | + if ( $newid === false ) { |
| 2181 | + $this->mArticleID = -1; |
| 2182 | + } else { |
| 2183 | + $this->mArticleID = intval( $newid ); |
| 2184 | + } |
2182 | 2185 | $this->mRestrictionsLoaded = false; |
2183 | 2186 | $this->mRestrictions = array(); |
| 2187 | + $this->mRedirect = null; |
| 2188 | + $this->mLength = -1; |
| 2189 | + $this->mLatestID = false; |
2184 | 2190 | } |
2185 | 2191 | |
2186 | 2192 | /** |