Index: trunk/extensions/LiquidThreads/i18n/Lqt.i18n.php |
— | — | @@ -228,8 +228,11 @@ |
229 | 229 | This is a notification from {{SITENAME}} that a new reply to '$2' on $5, |
230 | 230 | was created on $3 at $4. |
231 | 231 | |
232 | | -You can see it at <$6>", |
| 232 | +You can see it at <$6> |
233 | 233 | |
| 234 | +The text of the reply is: |
| 235 | +$7", |
| 236 | + |
234 | 237 | // Quoting functionality |
235 | 238 | 'lqt-quote-intro' => 'On $2 at $3, [[User:$1|$1]] wrote:', |
236 | 239 | 'lqt-quote' => 'Quote', |
Index: trunk/extensions/LiquidThreads/classes/NewMessagesController.php |
— | — | @@ -340,7 +340,9 @@ |
341 | 341 | $time = $lang->time( $adjustedTimestamp ); |
342 | 342 | |
343 | 343 | $params = array( $u->getName(), $t->subjectWithoutIncrement(), |
344 | | - $date, $time, $talkPage, $permalink ); |
| 344 | + $date, $time, $talkPage, |
| 345 | + $permalink, |
| 346 | + $t->root()->getContent() ); |
345 | 347 | |
346 | 348 | // Get message in user's own language, bug 20645 |
347 | 349 | $msg = wfMsgReal( $msgName, $params, true /* use DB */, $langCode, |