summaryrefslogtreecommitdiff
path: root/includes/SpecialListredirects.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/SpecialListredirects.php')
-rw-r--r--includes/SpecialListredirects.php10
1 files changed, 4 insertions, 6 deletions
diff --git a/includes/SpecialListredirects.php b/includes/SpecialListredirects.php
index f717ef72..09dc2b39 100644
--- a/includes/SpecialListredirects.php
+++ b/includes/SpecialListredirects.php
@@ -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,7 +19,7 @@ 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 );