diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2007-05-16 20:58:53 +0000 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2007-05-16 20:58:53 +0000 |
commit | cecb985bee3bdd252e1b8dc0bd500b37cd52be01 (patch) | |
tree | 17266aa237742640aabee7856f0202317a45d540 /includes/SpecialMostlinked.php | |
parent | 0bac06c301f2a83edb0236e4c2434da16848d549 (diff) |
Aktualisierung auf MediaWiki 1.10.0
Plugins angepasst und verbessert
kleine Korrekturen am Design
Diffstat (limited to 'includes/SpecialMostlinked.php')
-rw-r--r-- | includes/SpecialMostlinked.php | 13 |
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, |