(bug 30679) Some installer fields should always be LTR
Patch by Amir E. Aharoni (some whitespace fixes)
This commit is contained in:
parent
488d44c865
commit
056628a8a5
4 changed files with 7 additions and 4 deletions
1
CREDITS
1
CREDITS
|
|
@ -78,6 +78,7 @@ following names for their contribution to the product.
|
|||
* Ahmad Sherif
|
||||
* Alejandro Mery
|
||||
* Amalthea
|
||||
* Amir E. Aharoni
|
||||
* Antonio Ospite
|
||||
* Azliq7
|
||||
* Beau
|
||||
|
|
|
|||
|
|
@ -462,8 +462,8 @@ abstract class DatabaseInstaller {
|
|||
return
|
||||
Html::openElement( 'fieldset' ) .
|
||||
Html::element( 'legend', array(), wfMsg( 'config-db-install-account' ) ) .
|
||||
$this->getTextBox( '_InstallUser', 'config-db-username', array(), $this->parent->getHelpBox( 'config-db-install-username' ) ) .
|
||||
$this->getPasswordBox( '_InstallPassword', 'config-db-password', array(), $this->parent->getHelpBox( 'config-db-install-password' ) ) .
|
||||
$this->getTextBox( '_InstallUser', 'config-db-username', array( 'dir' => 'ltr' ), $this->parent->getHelpBox( 'config-db-install-username' ) ) .
|
||||
$this->getPasswordBox( '_InstallPassword', 'config-db-password', array( 'dir' => 'ltr' ), $this->parent->getHelpBox( 'config-db-install-password' ) ) .
|
||||
Html::closeElement( 'fieldset' );
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -75,8 +75,8 @@ class MysqlInstaller extends DatabaseInstaller {
|
|||
$this->getTextBox( 'wgDBserver', 'config-db-host', array(), $this->parent->getHelpBox( 'config-db-host-help' ) ) .
|
||||
Html::openElement( 'fieldset' ) .
|
||||
Html::element( 'legend', array(), wfMsg( 'config-db-wiki-settings' ) ) .
|
||||
$this->getTextBox( 'wgDBname', 'config-db-name', array(), $this->parent->getHelpBox( 'config-db-name-help' ) ) .
|
||||
$this->getTextBox( 'wgDBprefix', 'config-db-prefix', array(), $this->parent->getHelpBox( 'config-db-prefix-help' ) ) .
|
||||
$this->getTextBox( 'wgDBname', 'config-db-name', array( 'dir' => 'ltr' ), $this->parent->getHelpBox( 'config-db-name-help' ) ) .
|
||||
$this->getTextBox( 'wgDBprefix', 'config-db-prefix', array( 'dir' => 'ltr' ), $this->parent->getHelpBox( 'config-db-prefix-help' ) ) .
|
||||
Html::closeElement( 'fieldset' ) .
|
||||
$this->getInstallUserBox();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -894,12 +894,14 @@ class WebInstaller_Options extends WebInstallerPage {
|
|||
$this->parent->getTextBox( array(
|
||||
'var' => 'wgDeletedDirectory',
|
||||
'label' => 'config-upload-deleted',
|
||||
'attribs' => array( 'dir' => 'ltr' ),
|
||||
'help' => $this->parent->getHelpBox( 'config-upload-deleted-help' )
|
||||
) ) .
|
||||
'</div>' .
|
||||
$this->parent->getTextBox( array(
|
||||
'var' => 'wgLogo',
|
||||
'label' => 'config-logo',
|
||||
'attribs' => array( 'dir' => 'ltr' ),
|
||||
'help' => $this->parent->getHelpBox( 'config-logo-help' )
|
||||
) )
|
||||
);
|
||||
|
|
|
|||
Loading…
Reference in a new issue