Index: trunk/extensions/LiquidThreads/classes/View.php |
— | — | @@ -1112,7 +1112,7 @@ |
1113 | 1113 | } elseif ( $thread->hasSubthreads() && !$showThreads ) { |
1114 | 1114 | // Add a "show subthreads" link. |
1115 | 1115 | $replies = count($thread->replies()); |
1116 | | - $linkText = wfMsgExt( 'lqt-thread-show-replies', 'parseinline', array($replies) ); |
| 1116 | + $linkText = wfMsgExt( 'lqt-thread-show-replies', 'parseinline', $wgLang->formatNum($replies) ); |
1117 | 1117 | $linkTitle = clone $thread->topmostThread()->title(); |
1118 | 1118 | $linkTitle->setFragment( '#'.$thread->getAnchorName() ); |
1119 | 1119 | |