From bbdafeb264521c6a2be182a006409e53ee90e105 Mon Sep 17 00:00:00 2001 From: Rob Church Date: Wed, 22 Aug 2007 08:07:48 +0000 Subject: [PATCH] * Fix "most viewed" heading * Fix images in list --- includes/SpecialStatistics.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/includes/SpecialStatistics.php b/includes/SpecialStatistics.php index a2fd64537e..9358c0bc4f 100644 --- a/includes/SpecialStatistics.php +++ b/includes/SpecialStatistics.php @@ -1,6 +1,8 @@ numRows() > 0 ) { - $text .= '==' . wfMsg( 'statistics-mostpopular' ) . "==\n"; + $text .= "\n==" . wfMsg( 'statistics-mostpopular' ) . "==\n"; while( $row = $res->fetchObject() ) { $title = Title::makeTitleSafe( $row->page_namespace, $row->page_title ); if( $title instanceof Title ) - $text .= '* [[' . $title->getPrefixedText() . ']] (' . $wgLang->formatNum( $row->page_counter ) . ")\n"; + $text .= '* [[:' . $title->getPrefixedText() . ']] (' . $wgLang->formatNum( $row->page_counter ) . ")\n"; } $res->free(); } -- 2.20.1