Index: trunk/phase3/includes/User.php |
— | — | @@ -2264,7 +2264,6 @@ |
2265 | 2265 | function addWatch( $title ) { |
2266 | 2266 | $wl = WatchedItem::fromUserTitle( $this, $title ); |
2267 | 2267 | $wl->addWatch(); |
2268 | | - $this->invalidateCache(); |
2269 | 2268 | } |
2270 | 2269 | |
2271 | 2270 | /** |
— | — | @@ -2274,7 +2273,6 @@ |
2275 | 2274 | function removeWatch( $title ) { |
2276 | 2275 | $wl = WatchedItem::fromUserTitle( $this, $title ); |
2277 | 2276 | $wl->removeWatch(); |
2278 | | - $this->invalidateCache(); |
2279 | 2277 | } |
2280 | 2278 | |
2281 | 2279 | /** |