Pass the user as an argument to 'isValidPassword' hook callbacks; see docs/hooks...
[lhc/web/wiklou.git] / includes / SpecialListredirects.php
index cd59d25..581ea55 100644 (file)
@@ -1,7 +1,6 @@
 <?php
 /**
- * @package MediaWiki
- * @subpackage SpecialPage
+ * @addtogroup SpecialPage
  *
  * @author Rob Church <robchur@gmail.com>
  * @copyright © 2006 Rob Church
@@ -9,10 +8,9 @@
  */
 
 /**
- * @package MediaWiki
- * @subpackage SpecialPage
+ * Special:Listredirects - Lists all the redirects on the wiki.
+ * @addtogroup SpecialPage
  */
-
 class ListredirectsPage extends QueryPage {
 
        function getName() { return( 'Listredirects' ); }
@@ -21,19 +19,19 @@ class ListredirectsPage extends QueryPage {
        function sortDescending() { return( false ); }
 
        function getSQL() {
-               $dbr =& wfGetDB( DB_SLAVE );
+               $dbr = wfGetDB( DB_SLAVE );
                $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( $result ) {
+       function formatResult( $skin, $result ) {
                global $wgContLang;
        
                # Make a link to the redirect itself
                $rd_title = Title::makeTitle( $result->namespace, $result->title );
                $arr = $wgContLang->getArrow() . $wgContLang->getDirMark();
-               $rd_link = Linker::makeKnownLinkObj( $rd_title, '', 'redirect=no' );
+               $rd_link = $skin->makeKnownLinkObj( $rd_title, '', 'redirect=no' );
 
                # Find out where the redirect leads
                $revision = Revision::newFromTitle( $rd_title );
@@ -41,7 +39,7 @@ class ListredirectsPage extends QueryPage {
                        # Make a link to the destination page
                        $target = Title::newFromRedirect( $revision->getText() );
                        if( $target ) {
-                               $targetLink = Linker::makeLinkObj( $target );
+                               $targetLink = $skin->makeLinkObj( $target );
                        } else {
                                /** @todo Put in some decent error display here */
                                $targetLink = '*';
@@ -64,4 +62,4 @@ function wfSpecialListredirects() {
        $lrp->doQuery( $offset, $limit );
 }
 
-?>
+