aboutsummaryrefslogtreecommitdiffstats
path: root/includes/installer/OracleInstaller.php
diff options
context:
space:
mode:
authorumherirrender <umherirrender_de.wp@web.de>2013-03-24 11:01:51 +0100
committerGerrit Code Review <gerrit@wikimedia.org>2013-03-25 22:22:46 +0000
commit6c278b6d7eb3c4516888e25a21101ad7508f48cd (patch)
treed7a5dc0b44b0ae88f9af4b3440c237e86b6d9595 /includes/installer/OracleInstaller.php
parenta1ecc266d8659e2d5874cadb16f5fa3d1c692c9b (diff)
downloadmediawikicore-6c278b6d7eb3c4516888e25a21101ad7508f48cd.tar.gz
mediawikicore-6c278b6d7eb3c4516888e25a21101ad7508f48cd.zip
fix some spacing
* Removed spaces around array index * Removed double spaces or added spaces to begin or end of function calls, method signature, conditions or foreachs * Added braces to one-line ifs * Changed multi line conditions to one line conditions * Realigned some arrays Change-Id: Ia04d2a99d663b07101013c2d53b3b2e872fd9cc3
Diffstat (limited to 'includes/installer/OracleInstaller.php')
-rw-r--r--includes/installer/OracleInstaller.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/includes/installer/OracleInstaller.php b/includes/installer/OracleInstaller.php
index e85388907c15..632015f572a5 100644
--- a/includes/installer/OracleInstaller.php
+++ b/includes/installer/OracleInstaller.php
@@ -59,8 +59,7 @@ class OracleInstaller extends DatabaseInstaller {
if ( $this->getVar( 'wgDBserver' ) == 'localhost' ) {
$this->parent->setVar( 'wgDBserver', '' );
}
- return
- $this->getTextBox( 'wgDBserver', 'config-db-host-oracle', array(), $this->parent->getHelpBox( 'config-db-host-oracle-help' ) ) .
+ return $this->getTextBox( 'wgDBserver', 'config-db-host-oracle', array(), $this->parent->getHelpBox( 'config-db-host-oracle-help' ) ) .
Html::openElement( 'fieldset' ) .
Html::element( 'legend', array(), wfMessage( 'config-db-wiki-settings' )->text() ) .
$this->getTextBox( 'wgDBprefix', 'config-db-prefix' ) .