X-Git-Url: http://git.cyclocoop.org/?a=blobdiff_plain;ds=sidebyside;f=includes%2Finstaller%2FWebInstallerExistingWiki.php;h=df68be8ef6df5e03c868e3f0206f932bc729874d;hb=a8602d862ca0c9349c07082699c0fa8d0addb783;hp=1d17c940f43ec0eeab3b706297d225a1ef202521;hpb=afa2e1e66088ae2c35b03e616549203138e1e03b;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/installer/WebInstallerExistingWiki.php b/includes/installer/WebInstallerExistingWiki.php index 1d17c940f4..df68be8ef6 100644 --- a/includes/installer/WebInstallerExistingWiki.php +++ b/includes/installer/WebInstallerExistingWiki.php @@ -103,11 +103,11 @@ class WebInstallerExistingWiki extends WebInstallerPage { $this->addHTML( $this->parent->getInfoBox( wfMessage( 'config-localsettings-upgrade' )->plain() ) . '
' . - $this->parent->getTextBox( array( + $this->parent->getTextBox( [ 'var' => 'wgUpgradeKey', 'label' => 'config-localsettings-key', - 'attribs' => array( 'autocomplete' => 'off' ), - ) ) + 'attribs' => [ 'autocomplete' => 'off' ], + ] ) ); $this->endForm( 'continue' ); } @@ -146,7 +146,7 @@ class WebInstallerExistingWiki extends WebInstallerPage { } // Set the relevant variables from LocalSettings.php - $requiredVars = array( 'wgDBtype' ); + $requiredVars = [ 'wgDBtype' ]; $status = $this->importVariables( $requiredVars, $vars ); $installer = $this->parent->getDBInstaller(); $status->merge( $this->importVariables( $installer->getGlobalNames(), $vars ) );