Make declaration compatible with QueryPage::formatResult
authorAntoine Musso <hashar@users.mediawiki.org>
Tue, 16 Jan 2007 21:03:33 +0000 (21:03 +0000)
committerAntoine Musso <hashar@users.mediawiki.org>
Tue, 16 Jan 2007 21:03:33 +0000 (21:03 +0000)
includes/SpecialUncategorizedimages.php

index 1daba8e..51f695d 100644 (file)
@@ -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() ) );