aboutsummaryrefslogtreecommitdiffstats
path: root/includes/installer
diff options
context:
space:
mode:
authorReedy <reedy@wikimedia.org>2016-03-19 00:08:06 +0000
committerTTO <at.light@live.com.au>2016-03-19 00:20:58 +0000
commitb5656b6953888ceae07889d1e3b96c42d824990e (patch)
tree06dc0d21fda1423ecb5f96c7333f6367e924a001 /includes/installer
parent1834ee3d8e2f6a8ef2067ee7925c4f561209b12f (diff)
downloadmediawikicore-b5656b6953888ceae07889d1e3b96c42d824990e.tar.gz
mediawikicore-b5656b6953888ceae07889d1e3b96c42d824990e.zip
Many more function case mismatches
Change-Id: I5d3a5eb8adea1ecbf136415bb9fd7a162633ccca
Diffstat (limited to 'includes/installer')
-rw-r--r--includes/installer/CliInstaller.php2
-rw-r--r--includes/installer/DatabaseInstaller.php2
-rw-r--r--includes/installer/MssqlInstaller.php2
-rw-r--r--includes/installer/PostgresInstaller.php2
-rw-r--r--includes/installer/WebInstaller.php4
-rw-r--r--includes/installer/WebInstallerOptions.php14
6 files changed, 13 insertions, 13 deletions
diff --git a/includes/installer/CliInstaller.php b/includes/installer/CliInstaller.php
index 7ecb71c4f396..661c3ec0b5c2 100644
--- a/includes/installer/CliInstaller.php
+++ b/includes/installer/CliInstaller.php
@@ -199,7 +199,7 @@ class CliInstaller extends Installer {
}
}
- if ( !$status->isOk() ) {
+ if ( !$status->isOK() ) {
echo "\n";
exit( 1 );
}
diff --git a/includes/installer/DatabaseInstaller.php b/includes/installer/DatabaseInstaller.php
index 152f33a42fb9..79bd961d4726 100644
--- a/includes/installer/DatabaseInstaller.php
+++ b/includes/installer/DatabaseInstaller.php
@@ -202,7 +202,7 @@ abstract class DatabaseInstaller {
$this->db->commit( __METHOD__ );
}
// Resume normal operations
- if ( $status->isOk() ) {
+ if ( $status->isOK() ) {
$this->enableLB();
}
diff --git a/includes/installer/MssqlInstaller.php b/includes/installer/MssqlInstaller.php
index f70401b5837b..c6b896026307 100644
--- a/includes/installer/MssqlInstaller.php
+++ b/includes/installer/MssqlInstaller.php
@@ -634,7 +634,7 @@ class MssqlInstaller extends DatabaseInstaller {
$status = parent::createTables();
// Do last-minute stuff like fulltext indexes (since they can't be inside a transaction)
- if ( $status->isOk() ) {
+ if ( $status->isOK() ) {
$searchindex = $this->db->tableName( 'searchindex' );
$schema = $this->db->addIdentifierQuotes( $this->getVar( 'wgDBmwschema' ) );
try {
diff --git a/includes/installer/PostgresInstaller.php b/includes/installer/PostgresInstaller.php
index 234c209afd58..07284154dd3d 100644
--- a/includes/installer/PostgresInstaller.php
+++ b/includes/installer/PostgresInstaller.php
@@ -615,7 +615,7 @@ class PostgresInstaller extends DatabaseInstaller {
$conn->commit( __METHOD__ );
}
// Resume normal operations
- if ( $status->isOk() ) {
+ if ( $status->isOK() ) {
$this->enableLB();
}
diff --git a/includes/installer/WebInstaller.php b/includes/installer/WebInstaller.php
index 7d09fd72fef0..4c4e6b7ed0dc 100644
--- a/includes/installer/WebInstaller.php
+++ b/includes/installer/WebInstaller.php
@@ -1058,7 +1058,7 @@ class WebInstaller extends Installer {
if ( !$status->isGood() ) {
$text = $status->getWikiText();
- if ( $status->isOk() ) {
+ if ( $status->isOK() ) {
$box = $this->getWarningBox( $text );
} else {
$box = $this->getErrorBox( $text );
@@ -1149,7 +1149,7 @@ class WebInstaller extends Installer {
*/
public function downloadLinkHook( $text, $attribs, $parser ) {
$anchor = Html::rawElement( 'a',
- [ 'href' => $this->getURL( [ 'localsettings' => 1 ] ) ],
+ [ 'href' => $this->getUrl( [ 'localsettings' => 1 ] ) ],
wfMessage( 'config-download-localsettings' )->parse()
);
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();