Index: branches/liquidthreads/includes/ChangesList.php |
— | — | @@ -176,6 +176,13 @@ |
177 | 177 | global $wgContLang; |
178 | 178 | $articlelink .= $wgContLang->getDirMark(); |
179 | 179 | |
| 180 | + // LQT HACK. |
| 181 | + $thread = Threads::withRoot(new Post( $rc->getTitle() )); |
| 182 | + if ($thread) { |
| 183 | + $articlelink .= ' (from ' . $this->skin->makeKnownLinkObj( |
| 184 | + $thread->article()->getTitle()->getTalkPage() ) . ')'; |
| 185 | + } |
| 186 | + |
180 | 187 | $s .= ' '.$articlelink; |
181 | 188 | } |
182 | 189 | |