summaryrefslogtreecommitdiff
path: root/includes/SpecialMostlinked.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/SpecialMostlinked.php')
-rw-r--r--includes/SpecialMostlinked.php13
1 files changed, 4 insertions, 9 deletions
diff --git a/includes/SpecialMostlinked.php b/includes/SpecialMostlinked.php
index 2794ecbb..ab089cf8 100644
--- a/includes/SpecialMostlinked.php
+++ b/includes/SpecialMostlinked.php
@@ -1,10 +1,10 @@
<?php
/**
- * A special page to show pages ordered by the number of pages linking to them
+ * A special page to show pages ordered by the number of pages linking to them.
+ * Implements Special:Mostlinked
*
- * @package MediaWiki
- * @subpackage SpecialPage
+ * @addtogroup SpecialPage
*
* @author Ævar Arnfjörð Bjarmason <avarab@gmail.com>
* @author Rob Church <robchur@gmail.com>
@@ -12,11 +12,6 @@
* @copyright © 2006 Rob Church
* @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later
*/
-
-/**
- * @package MediaWiki
- * @subpackage SpecialPage
- */
class MostlinkedPage extends QueryPage {
function getName() { return 'Mostlinked'; }
@@ -27,7 +22,7 @@ class MostlinkedPage extends QueryPage {
* Note: Getting page_namespace only works if $this->isCached() is false
*/
function getSQL() {
- $dbr =& wfGetDB( DB_SLAVE );
+ $dbr = wfGetDB( DB_SLAVE );
list( $pagelinks, $page ) = $dbr->tableNamesN( 'pagelinks', 'page' );
return
"SELECT 'Mostlinked' AS type,