From e09e3168136ed703e71f6cc68531ff6d4dfd065a Mon Sep 17 00:00:00 2001 From: Antoine Musso Date: Tue, 16 Jan 2007 21:03:33 +0000 Subject: [PATCH] Make declaration compatible with QueryPage::formatResult --- includes/SpecialUncategorizedimages.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/SpecialUncategorizedimages.php b/includes/SpecialUncategorizedimages.php index 1daba8edcb..51f695d340 100644 --- a/includes/SpecialUncategorizedimages.php +++ b/includes/SpecialUncategorizedimages.php @@ -37,7 +37,7 @@ class UncategorizedImagesPage extends QueryPage { WHERE cl_from IS NULL AND page_namespace = {$ns} AND page_is_redirect = 0"; } - function formatResult( &$skin, $row ) { + function formatResult( $skin, $row ) { global $wgContLang; $title = Title::makeTitleSafe( NS_IMAGE, $row->title ); $label = htmlspecialchars( $wgContLang->convert( $title->getText() ) ); -- 2.20.1