aboutsummaryrefslogtreecommitdiffstats
path: root/includes/installer/WebInstallerInstall.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/WebInstallerInstall.php
parentecfdb46916567cf4ea466135f9a053d6feca2afe (diff)
downloadmediawikicore-1834ee3d8e2f6a8ef2067ee7925c4f561209b12f.tar.gz
mediawikicore-1834ee3d8e2f6a8ef2067ee7925c4f561209b12f.zip
Fix numerous class/function casing
Change-Id: I23982bfa0548c9ea3bdb432be7982f1563930715
Diffstat (limited to 'includes/installer/WebInstallerInstall.php')
-rw-r--r--includes/installer/WebInstallerInstall.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/installer/WebInstallerInstall.php b/includes/installer/WebInstallerInstall.php
index 9d0d680cfd65..63740e3824c3 100644
--- a/includes/installer/WebInstallerInstall.php
+++ b/includes/installer/WebInstallerInstall.php
@@ -81,9 +81,9 @@ class WebInstallerInstall extends WebInstallerPage {
if ( $step == 'extension-tables' ) {
$this->endLiveBox();
}
- $msg = $status->isOk() ? 'config-install-step-done' : 'config-install-step-failed';
+ $msg = $status->isOK() ? 'config-install-step-done' : 'config-install-step-failed';
$html = wfMessage( 'word-separator' )->escaped() . wfMessage( $msg )->escaped();
- if ( !$status->isOk() ) {
+ if ( !$status->isOK() ) {
$html = "<span class=\"error\">$html</span>";
}
$this->addHTML( $html . "</li>\n" );