]> scripts.mit.edu Git - autoinstallsdev/mediawiki.git/blobdiff - includes/specials/SpecialFewestrevisions.php
MediaWiki 1.17.0
[autoinstallsdev/mediawiki.git] / includes / specials / SpecialFewestrevisions.php
index afd5ad48a5a31137c0780f3b4f08c3c1ecb290a3..c265ed38618074f9c39989342aff9babbfb200ba 100644 (file)
@@ -1,5 +1,22 @@
 <?php
 /**
+ * Implements Special:Fewestrevisions
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ * http://www.gnu.org/copyleft/gpl.html
+ *
  * @file
  * @ingroup SpecialPage
  */
@@ -53,15 +70,26 @@ class FewestrevisionsPage extends QueryPage {
                global $wgLang, $wgContLang;
 
                $nt = Title::makeTitleSafe( $result->namespace, $result->title );
+               if( !$nt ) {
+                       return '<!-- bad title -->';
+               }
+
                $text = $wgContLang->convert( $nt->getPrefixedText() );
 
-               $plink = $skin->makeKnownLinkObj( $nt, $text );
+               $plink = $skin->linkKnown(
+                       $nt,
+                       $text
+               );
 
-               $nl = wfMsgExt( 'nrevisions', array( 'parsemag', 'escape'),
+               $nl = wfMsgExt( 'nrevisions', array( 'parsemag', 'escape' ),
                        $wgLang->formatNum( $result->value ) );
-               $redirect = $result->redirect ? ' - ' . wfMsg( 'isredirect' ) : '';
-               $nlink = $skin->makeKnownLinkObj( $nt, $nl, 'action=history' ) . $redirect;
-
+               $redirect = $result->redirect ? ' - ' . wfMsgHtml( 'isredirect' ) : '';
+               $nlink = $skin->linkKnown(
+                       $nt,
+                       $nl,
+                       array(),
+                       array( 'action' => 'history' )
+               ) . $redirect;
 
                return wfSpecialList( $plink, $nlink );
        }