Fix {{NUMBEROFADMINS}} magic word
[lhc/web/wiklou.git] / includes / SpecialListredirects.php
index c1e5ad6..3cbdeda 100644 (file)
@@ -8,9 +8,6 @@
  * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later
  */
 
-/* */
-require_once 'QueryPage.php';
-
 /**
  * @package MediaWiki
  * @subpackage SpecialPage
@@ -18,19 +15,21 @@ require_once 'QueryPage.php';
 
 class ListredirectsPage extends QueryPage {
 
-       function getName() { return( 'listredirects' ); }
+       function getName() { return( 'Listredirects' ); }
        function isExpensive() { return( true ); }
        function isSyndicated() { return( false ); }
        function sortDescending() { return( false ); }
 
        function getSQL() {
                $dbr =& wfGetDB( DB_SLAVE );
-               return( 'SELECT page_title AS title, page_namespace AS namespace, page_namespace AS value FROM ' . $dbr->tableName( 'page' ) . ' WHERE page_is_redirect = 1' );
+               $page = $dbr->tableName( 'page' );
+               $sql = "SELECT 'Listredirects' AS type, page_title AS title, page_namespace AS namespace, 0 AS value FROM $page WHERE page_is_redirect = 1";
+               return( $sql );
        }
 
        function formatResult( $skin, $result ) {
                global $wgContLang;
-
+       
                # Make a link to the redirect itself
                $rd_title = Title::makeTitle( $result->namespace, $result->title );
                $rd_link = $skin->makeKnownLinkObj( $rd_title, '', 'redirect=no' );
@@ -51,8 +50,11 @@ class ListredirectsPage extends QueryPage {
                        $targetLink = '*';
                }
 
+               # Check the language; RTL wikis need a ←
+               $arr = $wgContLang->isRTL() ? ' ← ' : ' → ';
+
                # Format the whole thing and return it
-               return( $rd_link . ' → ' . $targetLink );
+               return( $rd_link . $arr . $targetLink );
 
        }
 
@@ -64,4 +66,4 @@ function wfSpecialListredirects() {
        $lrp->doQuery( $offset, $limit );
 }
 
-?>
\ No newline at end of file
+?>