From ca32f08966f1b51fcb19460f0996bb0c4048e6fe Mon Sep 17 00:00:00 2001 From: Pierre Schmitz Date: Sat, 3 Dec 2011 13:29:22 +0100 Subject: Update to MediaWiki 1.18.0 * also update ArchLinux skin to chagnes in MonoBook * Use only css to hide our menu bar when printing --- includes/specials/SpecialLongpages.php | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) (limited to 'includes/specials/SpecialLongpages.php') diff --git a/includes/specials/SpecialLongpages.php b/includes/specials/SpecialLongpages.php index cd0f3090..dd60e37d 100644 --- a/includes/specials/SpecialLongpages.php +++ b/includes/specials/SpecialLongpages.php @@ -27,22 +27,11 @@ */ class LongPagesPage extends ShortPagesPage { - function getName() { - return "Longpages"; + function __construct( $name = 'Longpages' ) { + parent::__construct( $name ); } function sortDescending() { return true; } } - -/** - * constructor - */ -function wfSpecialLongpages() { - list( $limit, $offset ) = wfCheckLimits(); - - $lpp = new LongPagesPage(); - - $lpp->doQuery( $offset, $limit ); -} -- cgit v1.2.2