aboutsummaryrefslogtreecommitdiffstats
path: root/includes/installer/WebInstallerOptions.php
diff options
context:
space:
mode:
authorReedy <reedy@wikimedia.org>2016-03-18 13:55:54 +0000
committerKrinkle <krinklemail@gmail.com>2016-03-18 23:14:49 +0000
commit1834ee3d8e2f6a8ef2067ee7925c4f561209b12f (patch)
tree45b7e5708d0328a21e58884aee206d381acf33da /includes/installer/WebInstallerOptions.php
parentecfdb46916567cf4ea466135f9a053d6feca2afe (diff)
downloadmediawikicore-1834ee3d8e2f6a8ef2067ee7925c4f561209b12f.tar.gz
mediawikicore-1834ee3d8e2f6a8ef2067ee7925c4f561209b12f.zip
Fix numerous class/function casing
Change-Id: I23982bfa0548c9ea3bdb432be7982f1563930715
Diffstat (limited to 'includes/installer/WebInstallerOptions.php')
-rw-r--r--includes/installer/WebInstallerOptions.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/includes/installer/WebInstallerOptions.php b/includes/installer/WebInstallerOptions.php
index 7cc5db23bd18..938f77530fb1 100644
--- a/includes/installer/WebInstallerOptions.php
+++ b/includes/installer/WebInstallerOptions.php
@@ -67,7 +67,7 @@ class WebInstallerOptions extends WebInstallerPage {
$this->parent->getHelpBox( 'config-license-help' ) .
# E-mail
- $this->getFieldSetStart( 'config-email-settings' ) .
+ $this->getFieldsetStart( 'config-email-settings' ) .
$this->parent->getCheckBox( [
'var' => 'wgEnableEmail',
'label' => 'config-enable-email',
@@ -101,11 +101,11 @@ class WebInstallerOptions extends WebInstallerPage {
] ) .
$this->parent->getHelpBox( 'config-email-auth-help' ) .
"</div>" .
- $this->getFieldSetEnd()
+ $this->getFieldsetEnd()
);
$skins = $this->parent->findExtensions( 'skins' );
- $skinHtml = $this->getFieldSetStart( 'config-skins' );
+ $skinHtml = $this->getFieldsetStart( 'config-skins' );
$skinNames = array_map( 'strtolower', $skins );
$chosenSkinName = $this->getVar( 'wgDefaultSkin', $this->parent->getDefaultSkin( $skinNames ) );