(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
|
* Ahmad Sherif
|
||||||
* Alejandro Mery
|
* Alejandro Mery
|
||||||
* Amalthea
|
* Amalthea
|
||||||
|
* Amir E. Aharoni
|
||||||
* Antonio Ospite
|
* Antonio Ospite
|
||||||
* Azliq7
|
* Azliq7
|
||||||
* Beau
|
* Beau
|
||||||
|
|
|
||||||
|
|
@ -462,8 +462,8 @@ abstract class DatabaseInstaller {
|
||||||
return
|
return
|
||||||
Html::openElement( 'fieldset' ) .
|
Html::openElement( 'fieldset' ) .
|
||||||
Html::element( 'legend', array(), wfMsg( 'config-db-install-account' ) ) .
|
Html::element( 'legend', array(), wfMsg( 'config-db-install-account' ) ) .
|
||||||
$this->getTextBox( '_InstallUser', 'config-db-username', array(), $this->parent->getHelpBox( 'config-db-install-username' ) ) .
|
$this->getTextBox( '_InstallUser', 'config-db-username', array( 'dir' => 'ltr' ), $this->parent->getHelpBox( 'config-db-install-username' ) ) .
|
||||||
$this->getPasswordBox( '_InstallPassword', 'config-db-password', array(), $this->parent->getHelpBox( 'config-db-install-password' ) ) .
|
$this->getPasswordBox( '_InstallPassword', 'config-db-password', array( 'dir' => 'ltr' ), $this->parent->getHelpBox( 'config-db-install-password' ) ) .
|
||||||
Html::closeElement( 'fieldset' );
|
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' ) ) .
|
$this->getTextBox( 'wgDBserver', 'config-db-host', array(), $this->parent->getHelpBox( 'config-db-host-help' ) ) .
|
||||||
Html::openElement( 'fieldset' ) .
|
Html::openElement( 'fieldset' ) .
|
||||||
Html::element( 'legend', array(), wfMsg( 'config-db-wiki-settings' ) ) .
|
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( 'wgDBname', 'config-db-name', array( 'dir' => 'ltr' ), $this->parent->getHelpBox( 'config-db-name-help' ) ) .
|
||||||
$this->getTextBox( 'wgDBprefix', 'config-db-prefix', array(), $this->parent->getHelpBox( 'config-db-prefix-help' ) ) .
|
$this->getTextBox( 'wgDBprefix', 'config-db-prefix', array( 'dir' => 'ltr' ), $this->parent->getHelpBox( 'config-db-prefix-help' ) ) .
|
||||||
Html::closeElement( 'fieldset' ) .
|
Html::closeElement( 'fieldset' ) .
|
||||||
$this->getInstallUserBox();
|
$this->getInstallUserBox();
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -894,12 +894,14 @@ class WebInstaller_Options extends WebInstallerPage {
|
||||||
$this->parent->getTextBox( array(
|
$this->parent->getTextBox( array(
|
||||||
'var' => 'wgDeletedDirectory',
|
'var' => 'wgDeletedDirectory',
|
||||||
'label' => 'config-upload-deleted',
|
'label' => 'config-upload-deleted',
|
||||||
|
'attribs' => array( 'dir' => 'ltr' ),
|
||||||
'help' => $this->parent->getHelpBox( 'config-upload-deleted-help' )
|
'help' => $this->parent->getHelpBox( 'config-upload-deleted-help' )
|
||||||
) ) .
|
) ) .
|
||||||
'</div>' .
|
'</div>' .
|
||||||
$this->parent->getTextBox( array(
|
$this->parent->getTextBox( array(
|
||||||
'var' => 'wgLogo',
|
'var' => 'wgLogo',
|
||||||
'label' => 'config-logo',
|
'label' => 'config-logo',
|
||||||
|
'attribs' => array( 'dir' => 'ltr' ),
|
||||||
'help' => $this->parent->getHelpBox( 'config-logo-help' )
|
'help' => $this->parent->getHelpBox( 'config-logo-help' )
|
||||||
) )
|
) )
|
||||||
);
|
);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue