diff options
author | Chad Horohoe <demon@users.mediawiki.org> | 2010-11-04 23:21:24 +0000 |
---|---|---|
committer | Chad Horohoe <demon@users.mediawiki.org> | 2010-11-04 23:21:24 +0000 |
commit | 0bee9581b413639185e9e877bf572c4700d44d96 (patch) | |
tree | 30be7e27b050cf34a13922f9ff15c230c2207e78 /includes/installer/OracleInstaller.php | |
parent | aa94f5f29a6086a88703f344f34998a846a36f4d (diff) | |
download | mediawikicore-0bee9581b413639185e9e877bf572c4700d44d96.tar.gz mediawikicore-0bee9581b413639185e9e877bf572c4700d44d96.zip |
Replace XML->HTML methods throughout most of the installer
Notes
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/76055
Diffstat (limited to 'includes/installer/OracleInstaller.php')
-rw-r--r-- | includes/installer/OracleInstaller.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/includes/installer/OracleInstaller.php b/includes/installer/OracleInstaller.php index 2444f909ce8c..62b3ad2cbdf3 100644 --- a/includes/installer/OracleInstaller.php +++ b/includes/installer/OracleInstaller.php @@ -43,13 +43,13 @@ class OracleInstaller extends DatabaseInstaller { $this->parent->setVar( '_SameAccount', false ); $this->parent->setVar( '_CreateDBAccount', true ); $this->parent->setVar( 'wgDBname', '' ); - return Xml::openElement( 'fieldset' ) . - Xml::element( 'legend', array(), wfMsg( 'config-db-web-account' ) ) . - Xml::openElement( 'div', array( 'id' => 'dbOtherAccount' ) ) . + return Html::openElement( 'fieldset' ) . + Html::element( 'legend', array(), wfMsg( 'config-db-web-account' ) ) . + Html::openElement( 'div', array( 'id' => 'dbOtherAccount' ) ) . $this->getTextBox( 'wgDBuser', 'config-db-username' ) . $this->getPasswordBox( 'wgDBpassword', 'config-db-password', array(), $this->parent->getHelpBox( 'config-db-web-help' ) ) . $this->getCheckBox( '_CreateDBAccount', 'config-db-web-create', array( 'disabled' => true ) ). - Xml::closeElement( 'div' ) . Xml::closeElement( 'fieldset' ); + Html::closeElement( 'div' ) . Html::closeElement( 'fieldset' ); } public function getConnectForm() { |