* (bug 9026) Incorrect heading numbering when viewing Special:Statistics with "auto...
authorRob Church <robchurch@users.mediawiki.org>
Wed, 22 Aug 2007 08:05:40 +0000 (08:05 +0000)
committerRob Church <robchurch@users.mediawiki.org>
Wed, 22 Aug 2007 08:05:40 +0000 (08:05 +0000)
* Some minor cleanup and bits of refactoring

RELEASE-NOTES
includes/SpecialStatistics.php

index c30791f..8cfb5b6 100644 (file)
@@ -398,6 +398,8 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
   in the wrong order
 * (bug 10985) Special:DoubleRedirects was omitting "fixed" results when cached,
   leading to inconsistent paging behaviour
+* (bug 9026) Incorrect heading numbering when viewing Special:Statistics with
+  "auto-numbered headings" enabled
 
 == API changes since 1.10 ==
 
index 6343edd..a2fd645 100644 (file)
@@ -1,18 +1,17 @@
 <?php
+
 /**
-*
-* @addtogroup SpecialPage
-*/
+ *
+ * @addtogroup SpecialPage
+ */
 
 /**
-* constructor
-*/
-function wfSpecialStatistics() {
+ * Show the special page
+ *
+ * @param mixed $par (not used)
+ */
+function wfSpecialStatistics( $par = '' ) {
        global $wgOut, $wgLang, $wgRequest;
-       $fname = 'wfSpecialStatistics';
-
-       $action = $wgRequest->getVal( 'action' );
-
        $dbr = wfGetDB( DB_SLAVE );
 
        $views = SiteStats::views();
@@ -24,14 +23,14 @@ function wfSpecialStatistics() {
        $admins = SiteStats::admins();
        $numJobs = SiteStats::jobs();
 
-       if ($action == 'raw') {
+       if( $wgRequest->getVal( 'action' ) == 'raw' ) {
                $wgOut->disable();
                header( 'Pragma: nocache' );
                echo "total=$total;good=$good;views=$views;edits=$edits;users=$users;admins=$admins;images=$images;jobs=$numJobs\n";
                return;
        } else {
-               $text = '==' . wfMsg( 'sitestats' ) . "==\n" ;
-               $text .= wfMsgExt( 'sitestatstext', array ( 'parsemag' ),
+               $text = '==' . wfMsg( 'sitestats' ) . "==\n";
+               $text .= wfMsgExt( 'sitestatstext', array( 'parsemag' ),
                        $wgLang->formatNum( $total ),
                        $wgLang->formatNum( $good ),
                        $wgLang->formatNum( $views ),
@@ -43,7 +42,6 @@ function wfSpecialStatistics() {
                );
 
                $text .= "\n==" . wfMsg( 'userstats' ) . "==\n";
-
                $text .= wfMsgExt( 'userstatstext', array ( 'parsemag' ),
                        $wgLang->formatNum( $users ),
                        $wgLang->formatNum( $admins ),
@@ -52,32 +50,41 @@ function wfSpecialStatistics() {
                        User::makeGroupLinkWiki( 'sysop' )
                );
 
-               $wgOut->addWikiText( $text );
-
                global $wgDisableCounters, $wgMiserMode, $wgUser, $wgLang, $wgContLang;
                if( !$wgDisableCounters && !$wgMiserMode ) {
-                       $page = $dbr->tableName( 'page' );
-                       $sql = "SELECT page_namespace, page_title, page_counter FROM {$page} WHERE page_is_redirect = 0 AND page_counter > 0 ORDER BY page_counter DESC";
-                       $sql = $dbr->limitResult($sql, 10, 0);
-                       $res = $dbr->query( $sql, $fname );
-                       if( $res ) {
-                               $wgOut->addHtml( '<h2>' . wfMsgHtml( 'statistics-mostpopular' ) . '</h2>' );
-                               $skin = $wgUser->getSkin();
-                               $wgOut->addHtml( '<ol>' );
-                               while( $row = $dbr->fetchObject( $res ) ) {
-                                       $link = $skin->makeKnownLinkObj( Title::makeTitleSafe( $row->page_namespace, $row->page_title ) );
-                                       $dirmark = $wgContLang->getDirMark();
-                                       $wgOut->addHtml( '<li>' . $link . $dirmark . ' [' . $wgLang->formatNum( $row->page_counter ) . ']</li>' );
+                       $res = $dbr->select(
+                               'page',
+                               array(
+                                       'page_namespace',
+                                       'page_title',
+                                       'page_counter',
+                               ),
+                               array(
+                                       'page_is_redirect' => 0,
+                                       'page_counter > 0',
+                               ),
+                               __METHOD__,
+                               array(
+                                       'ORDER BY' => 'page_counter DESC',
+                                       'LIMIT' => 10,
+                               )
+                       );
+                       if( $res->numRows() > 0 ) {
+                               $text .= '==' . 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";
                                }
-                               $wgOut->addHtml( '</ol>' );
-                               $dbr->freeResult( $res );
+                               $res->free();
                        }
                }
                
                $footer = wfMsg( 'statistics-footer' );
                if( !wfEmptyMsg( 'statistics-footer', $footer ) && $footer != '' )
-                       $wgOut->addWikiText( $footer );
-               
+                       $text .= $footer;
+                       
+               $wgOut->addWikiText( $text );           
        }
-}
-
+       
+}
\ No newline at end of file