]> scripts.mit.edu Git - autoinstalls/mediawiki.git/blobdiff - includes/specials/SpecialDoubleRedirects.php
MediaWiki 1.17.0
[autoinstalls/mediawiki.git] / includes / specials / SpecialDoubleRedirects.php
index b1bad0c311cb1e7fb7c7d9a305f1406bb68611f6..c7f6321031890ed701b70f5a855c82b999375e73 100644 (file)
@@ -1,5 +1,22 @@
 <?php
 /**
+ * Implements Special:DoubleRedirects
+ *
+ * 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
  */
@@ -7,6 +24,7 @@
 /**
  * A special page listing redirects to redirecting page.
  * The software will automatically not follow double redirects, to prevent loops.
+ *
  * @ingroup SpecialPage
  */
 class DoubleRedirectsPage extends PageQueryPage {
@@ -70,20 +88,37 @@ class DoubleRedirectsPage extends PageQueryPage {
                        $res = $dbr->query( $sql, $fname );
                        if ( $res ) {
                                $result = $dbr->fetchObject( $res );
-                               $dbr->freeResult( $res );
                        }
                }
                if ( !$result ) {
-                       return '<s>' . $skin->makeLinkObj( $titleA, '', 'redirect=no' ) . '</s>';
+                       return '<del>' . $skin->link( $titleA, null, array(), array( 'redirect' => 'no' ) ) . '</del>';
                }
 
                $titleB = Title::makeTitle( $result->nsb, $result->tb );
                $titleC = Title::makeTitle( $result->nsc, $result->tc );
 
-               $linkA = $skin->makeKnownLinkObj( $titleA, '', 'redirect=no' );
-               $edit = $skin->makeBrokenLinkObj( $titleA, "(".wfMsg("qbedit").")" , 'redirect=no');
-               $linkB = $skin->makeKnownLinkObj( $titleB, '', 'redirect=no' );
-               $linkC = $skin->makeKnownLinkObj( $titleC );
+               $linkA = $skin->linkKnown(
+                       $titleA,
+                       null,
+                       array(),
+                       array( 'redirect' => 'no' )
+               );
+               $edit = $skin->linkKnown(
+                       $titleA,
+                       wfMsgExt( 'parentheses', array( 'escape' ), wfMsg( 'editlink' ) ),
+                       array(),
+                       array(
+                               'redirect' => 'no',
+                               'action' => 'edit'
+                       )
+               );
+               $linkB = $skin->linkKnown(
+                       $titleB,
+                       null,
+                       array(),
+                       array( 'redirect' => 'no' )
+               );
+               $linkC = $skin->linkKnown( $titleC );
                $arr = $wgContLang->getArrow() . $wgContLang->getDirMark();
 
                return( "{$linkA} {$edit} {$arr} {$linkB} {$arr} {$linkC}" );