From ed4d1a0847c771fe963eac3ccaf3d18e4df0cd7d Mon Sep 17 00:00:00 2001 From: Marius Hoch Date: Tue, 14 Oct 2014 02:57:32 +0200 Subject: [PATCH] Set default for unused variable in ApiFormatBase So that it can be left out when calling. Change-Id: I6137f5d57a12c0e52ad12b84428a82e8befae0c9 --- includes/api/ApiFormatBase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/api/ApiFormatBase.php b/includes/api/ApiFormatBase.php index 1baaaecc86..7a08ed7d1b 100644 --- a/includes/api/ApiFormatBase.php +++ b/includes/api/ApiFormatBase.php @@ -119,7 +119,7 @@ abstract class ApiFormatBase extends ApiBase { * Initialize the printer function and prepare the output headers. * @param bool $unused Always false since 1.25 */ - function initPrinter( $unused ) { + function initPrinter( $unused = false ) { if ( $this->mDisabled ) { return; } -- 2.20.1