From: Jakub Vrana Date: Sat, 1 Dec 2018 17:04:44 +0000 (+0100) Subject: Do not pass unused parameter X-Git-Tag: 1.34.0-rc.0~3374^2 X-Git-Url: https://git.cyclocoop.org/admin/%7B%24admin_url%7Dmembres/Zigzagzogzagzig?a=commitdiff_plain;h=8f4dde445fa2a140293753ee4b891f283a7c7e3c;p=lhc%2Fweb%2Fwiklou.git Do not pass unused parameter Found by PHPStan. Change-Id: Icf9f1c87ff2690b7a16c99418cdb1dae9d97ce25 --- 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"; }