X-Git-Url: http://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Finstaller%2FWebInstallerDBConnect.php;h=eb3a52f6f3753d9a497950fdd3d4fd205aa14823;hb=977b389d6a6ed441891fba350c3a6e28d1f21315;hp=7a0825e735461b5f1a97ef407b2c0e4026ecf9d5;hpb=23299ca8790bcf1aebcf54e0932b94338e630474;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/installer/WebInstallerDBConnect.php b/includes/installer/WebInstallerDBConnect.php index 7a0825e735..eb3a52f6f3 100644 --- a/includes/installer/WebInstallerDBConnect.php +++ b/includes/installer/WebInstallerDBConnect.php @@ -74,7 +74,7 @@ class WebInstallerDBConnect extends WebInstallerPage { $type, "DBType_$type", $type == $defaultType, - array( 'class' => 'dbRadio', 'rel' => "DB_wrapper_$type" ) + [ 'class' => 'dbRadio', 'rel' => "DB_wrapper_$type" ] ) . "\n"; @@ -82,12 +82,12 @@ class WebInstallerDBConnect extends WebInstallerPage { // config-header-sqlite $settings .= Html::openElement( 'div', - array( + [ 'id' => 'DB_wrapper_' . $type, 'class' => 'dbWrapper' - ) + ] ) . - Html::element( 'h3', array(), wfMessage( 'config-header-' . $type )->text() ) . + Html::element( 'h3', [], wfMessage( 'config-header-' . $type )->text() ) . $installer->getConnectForm() . "\n"; }