From eb62a1656806e4798e7ffae4515d568c6001fb73 Mon Sep 17 00:00:00 2001 From: jeroendedauw Date: Thu, 24 Sep 2015 19:12:34 +0200 Subject: [PATCH] Do not pass void into output function in SpecialListfiles.php Fix mistake caused by fail method name Change-Id: I8b7706ebb823f08e16867e96436dc1b022f1e36b --- includes/specials/SpecialListfiles.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/specials/SpecialListfiles.php b/includes/specials/SpecialListfiles.php index 2d79aaf8e8..3ea56c66a4 100644 --- a/includes/specials/SpecialListfiles.php +++ b/includes/specials/SpecialListfiles.php @@ -52,7 +52,7 @@ class SpecialListFiles extends IncludableSpecialPage { if ( $this->including() ) { $out->addParserOutputContent( $pager->getBodyOutput() ); } else { - $out->addHTML( $pager->getForm() ); + $pager->getForm(); $out->addParserOutputContent( $pager->getFullOutput() ); } } -- 2.20.1