* Skip additional setting of include_path in commandLine.inc (for non-Wikimedia mode)
[lhc/web/wiklou.git] / includes / SpecialDoubleRedirects.php
index af02269..e7b355c 100644 (file)
@@ -1,19 +1,13 @@
 <?php
 /**
  *
- * @package MediaWiki
- * @subpackage SpecialPage
+ * @addtogroup SpecialPage
  */
 
 /**
- *
- */
-require_once('QueryPage.php');
-
-/**
- *
- * @package MediaWiki
- * @subpackage SpecialPage
+ * A special page listing redirects to redirecting page.
+ * The software will automatically not follow double redirects, to prevent loops.
+ * @addtogroup SpecialPage
  */
 class DoubleRedirectsPage extends PageQueryPage {
 
@@ -31,7 +25,7 @@ class DoubleRedirectsPage extends PageQueryPage {
 
        function getSQLText( &$dbr, $namespace = null, $title = null ) {
                
-               extract( $dbr->tableNames( 'page', 'pagelinks' ) );
+               list( $page, $redirect ) = $dbr->tableNamesN( 'page', 'redirect' );
 
                $limitToTitle = !( $namespace === null && $title === null );
                $sql = $limitToTitle ? "SELECT" : "SELECT 'DoubleRedirects' as type," ;
@@ -39,14 +33,13 @@ class DoubleRedirectsPage extends PageQueryPage {
                         " pa.page_namespace as namespace, pa.page_title as title," .
                         " pb.page_namespace as nsb, pb.page_title as tb," .
                         " pc.page_namespace as nsc, pc.page_title as tc" .
-                  " FROM $pagelinks AS la, $pagelinks AS lb, $page AS pa, $page AS pb, $page AS pc" .
-                  " WHERE pa.page_is_redirect=1 AND pb.page_is_redirect=1" .
-                        " AND la.pl_from=pa.page_id" .
-                        " AND la.pl_namespace=pb.page_namespace" .
-                        " AND la.pl_title=pb.page_title" .
-                        " AND lb.pl_from=pb.page_id" .
-                        " AND lb.pl_namespace=pc.page_namespace" .
-                        " AND lb.pl_title=pc.page_title";
+                  " FROM $redirect AS ra, $redirect AS rb, $page AS pa, $page AS pb, $page AS pc" .
+                  " WHERE ra.rd_from=pa.page_id" .
+                        " AND ra.rd_namespace=pb.page_namespace" .
+                        " AND ra.rd_title=pb.page_title" .
+                        " AND rb.rd_from=pb.page_id" .
+                        " AND rb.rd_namespace=pc.page_namespace" .
+                        " AND rb.rd_title=pc.page_title";
 
                if( $limitToTitle ) {
                        $encTitle = $dbr->addQuotes( $title );
@@ -58,7 +51,7 @@ class DoubleRedirectsPage extends PageQueryPage {
        }
        
        function getSQL() {
-               $dbr =& wfGetDB( DB_SLAVE );
+               $dbr = wfGetDB( DB_SLAVE );
                return $this->getSQLText( $dbr );
        }
 
@@ -73,7 +66,7 @@ class DoubleRedirectsPage extends PageQueryPage {
                $titleA = Title::makeTitle( $result->namespace, $result->title );
 
                if ( $result && !isset( $result->nsb ) ) {
-                       $dbr =& wfGetDB( DB_SLAVE );
+                       $dbr = wfGetDB( DB_SLAVE );
                        $sql = $this->getSQLText( $dbr, $result->namespace, $result->title );
                        $res = $dbr->query( $sql, $fname );
                        if ( $res ) {
@@ -92,7 +85,7 @@ class DoubleRedirectsPage extends PageQueryPage {
                $edit = $skin->makeBrokenLinkObj( $titleA, "(".wfMsg("qbedit").")" , 'redirect=no');
                $linkB = $skin->makeKnownLinkObj( $titleB, '', 'redirect=no' );
                $linkC = $skin->makeKnownLinkObj( $titleC );
-               $arr = $wgContLang->isRTL() ? '&larr;' : '&rarr;';
+               $arr = $wgContLang->getArrow() . $wgContLang->getDirMark();
 
                return( "{$linkA} {$edit} {$arr} {$linkB} {$arr} {$linkC}" );
        }