From 8f4dde445fa2a140293753ee4b891f283a7c7e3c Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Sat, 1 Dec 2018 18:04:44 +0100 Subject: [PATCH] Do not pass unused parameter Found by PHPStan. Change-Id: Icf9f1c87ff2690b7a16c99418cdb1dae9d97ce25 --- includes/installer/WebInstallerOptions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/installer/WebInstallerOptions.php b/includes/installer/WebInstallerOptions.php index 953295a242..47947128c4 100644 --- a/includes/installer/WebInstallerOptions.php +++ b/includes/installer/WebInstallerOptions.php @@ -397,7 +397,7 @@ class WebInstallerOptions extends WebInstallerPage { $wrapperStyle = ( $this->getVar( '_LicenseCode' ) == 'cc-choose' ) ? '' : 'display: none'; return "
\n" . - Html::element( 'iframe', $iframeAttribs, '', false /* not short */ ) . + Html::element( 'iframe', $iframeAttribs ) . "
\n"; } -- 2.20.1