Index: trunk/extensions/LiquidThreads/classes/LqtThreads.php |
— | — | @@ -110,6 +110,9 @@ |
111 | 111 | self::createTalkpageIfNeeded( $article ); |
112 | 112 | |
113 | 113 | NewMessages::writeMessageStateForUpdatedThread( $newthread, $change_type, $wgUser ); |
| 114 | + |
| 115 | + // Touch the article |
| 116 | + $article->getTitle()->invalidateCache(); |
114 | 117 | |
115 | 118 | return $newthread; |
116 | 119 | } |
Index: trunk/extensions/LiquidThreads/classes/LqtThread.php |
— | — | @@ -173,6 +173,8 @@ |
174 | 174 | |
175 | 175 | // Touch the root |
176 | 176 | $this->root()->getTitle()->invalidateCache(); |
| 177 | + // Touch the talk page, too. |
| 178 | + $this->article()->getTitle()->invalidateCache(); |
177 | 179 | |
178 | 180 | if ( $change_type == Threads::CHANGE_EDITED_ROOT ) { |
179 | 181 | NewMessages::writeMessageStateForUpdatedThread( $this, $change_type, $wgUser ); |