diff options
author | Reedy <reedy@wikimedia.org> | 2016-03-19 00:08:06 +0000 |
---|---|---|
committer | TTO <at.light@live.com.au> | 2016-03-19 00:20:58 +0000 |
commit | b5656b6953888ceae07889d1e3b96c42d824990e (patch) | |
tree | 06dc0d21fda1423ecb5f96c7333f6367e924a001 /includes/installer/WebInstallerOptions.php | |
parent | 1834ee3d8e2f6a8ef2067ee7925c4f561209b12f (diff) | |
download | mediawikicore-b5656b6953888ceae07889d1e3b96c42d824990e.tar.gz mediawikicore-b5656b6953888ceae07889d1e3b96c42d824990e.zip |
Many more function case mismatches
Change-Id: I5d3a5eb8adea1ecbf136415bb9fd7a162633ccca
Diffstat (limited to 'includes/installer/WebInstallerOptions.php')
-rw-r--r-- | includes/installer/WebInstallerOptions.php | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/includes/installer/WebInstallerOptions.php b/includes/installer/WebInstallerOptions.php index 938f77530fb1..0c01b6457b0b 100644 --- a/includes/installer/WebInstallerOptions.php +++ b/includes/installer/WebInstallerOptions.php @@ -136,13 +136,13 @@ class WebInstallerOptions extends WebInstallerPage { } $skinHtml .= $this->parent->getHelpBox( 'config-skins-help' ) . - $this->getFieldSetEnd(); + $this->getFieldsetEnd(); $this->addHTML( $skinHtml ); $extensions = $this->parent->findExtensions(); if ( $extensions ) { - $extHtml = $this->getFieldSetStart( 'config-extensions' ); + $extHtml = $this->getFieldsetStart( 'config-extensions' ); foreach ( $extensions as $ext ) { $extHtml .= $this->parent->getCheckBox( [ @@ -152,7 +152,7 @@ class WebInstallerOptions extends WebInstallerPage { } $extHtml .= $this->parent->getHelpBox( 'config-extensions-help' ) . - $this->getFieldSetEnd(); + $this->getFieldsetEnd(); $this->addHTML( $extHtml ); } @@ -167,7 +167,7 @@ class WebInstallerOptions extends WebInstallerPage { $uploadwrapperStyle = $this->getVar( 'wgEnableUploads' ) ? '' : 'display: none'; $this->addHTML( # Uploading - $this->getFieldSetStart( 'config-upload-settings' ) . + $this->getFieldsetStart( 'config-upload-settings' ) . $this->parent->getCheckBox( [ 'var' => 'wgEnableUploads', 'label' => 'config-upload-enable', @@ -195,7 +195,7 @@ class WebInstallerOptions extends WebInstallerPage { 'label' => 'config-instantcommons', 'help' => $this->parent->getHelpBox( 'config-instantcommons-help' ) ] ) . - $this->getFieldSetEnd() + $this->getFieldsetEnd() ); $caches = [ 'none' ]; @@ -219,7 +219,7 @@ class WebInstallerOptions extends WebInstallerPage { $hidden = ( $cacheval == 'memcached' ) ? '' : 'display: none'; $this->addHTML( # Advanced settings - $this->getFieldSetStart( 'config-advanced-settings' ) . + $this->getFieldsetStart( 'config-advanced-settings' ) . # Object cache settings // getRadioSet() builds a set of labeled radio buttons. // For grep: The following messages are used as the item labels: @@ -239,7 +239,7 @@ class WebInstallerOptions extends WebInstallerPage { 'help' => $this->parent->getHelpBox( 'config-memcached-help' ) ] ) . '</div>' . - $this->getFieldSetEnd() + $this->getFieldsetEnd() ); $this->endForm(); |