Index: trunk/phase3/CREDITS |
— | — | @@ -78,6 +78,7 @@ |
79 | 79 | * Ahmad Sherif |
80 | 80 | * Alejandro Mery |
81 | 81 | * Amalthea |
| 82 | +* Amir E. Aharoni |
82 | 83 | * Antonio Ospite |
83 | 84 | * Azliq7 |
84 | 85 | * Beau |
Index: trunk/phase3/includes/installer/DatabaseInstaller.php |
— | — | @@ -462,8 +462,8 @@ |
463 | 463 | return |
464 | 464 | Html::openElement( 'fieldset' ) . |
465 | 465 | Html::element( 'legend', array(), wfMsg( 'config-db-install-account' ) ) . |
466 | | - $this->getTextBox( '_InstallUser', 'config-db-username', array(), $this->parent->getHelpBox( 'config-db-install-username' ) ) . |
467 | | - $this->getPasswordBox( '_InstallPassword', 'config-db-password', array(), $this->parent->getHelpBox( 'config-db-install-password' ) ) . |
| 466 | + $this->getTextBox( '_InstallUser', 'config-db-username', array( 'dir' => 'ltr' ), $this->parent->getHelpBox( 'config-db-install-username' ) ) . |
| 467 | + $this->getPasswordBox( '_InstallPassword', 'config-db-password', array( 'dir' => 'ltr' ), $this->parent->getHelpBox( 'config-db-install-password' ) ) . |
468 | 468 | Html::closeElement( 'fieldset' ); |
469 | 469 | } |
470 | 470 | |
Index: trunk/phase3/includes/installer/MysqlInstaller.php |
— | — | @@ -75,8 +75,8 @@ |
76 | 76 | $this->getTextBox( 'wgDBserver', 'config-db-host', array(), $this->parent->getHelpBox( 'config-db-host-help' ) ) . |
77 | 77 | Html::openElement( 'fieldset' ) . |
78 | 78 | Html::element( 'legend', array(), wfMsg( 'config-db-wiki-settings' ) ) . |
79 | | - $this->getTextBox( 'wgDBname', 'config-db-name', array(), $this->parent->getHelpBox( 'config-db-name-help' ) ) . |
80 | | - $this->getTextBox( 'wgDBprefix', 'config-db-prefix', array(), $this->parent->getHelpBox( 'config-db-prefix-help' ) ) . |
| 79 | + $this->getTextBox( 'wgDBname', 'config-db-name', array( 'dir' => 'ltr' ), $this->parent->getHelpBox( 'config-db-name-help' ) ) . |
| 80 | + $this->getTextBox( 'wgDBprefix', 'config-db-prefix', array( 'dir' => 'ltr' ), $this->parent->getHelpBox( 'config-db-prefix-help' ) ) . |
81 | 81 | Html::closeElement( 'fieldset' ) . |
82 | 82 | $this->getInstallUserBox(); |
83 | 83 | } |
Index: trunk/phase3/includes/installer/WebInstallerPage.php |
— | — | @@ -894,12 +894,14 @@ |
895 | 895 | $this->parent->getTextBox( array( |
896 | 896 | 'var' => 'wgDeletedDirectory', |
897 | 897 | 'label' => 'config-upload-deleted', |
| 898 | + 'attribs' => array( 'dir' => 'ltr' ), |
898 | 899 | 'help' => $this->parent->getHelpBox( 'config-upload-deleted-help' ) |
899 | 900 | ) ) . |
900 | 901 | '</div>' . |
901 | 902 | $this->parent->getTextBox( array( |
902 | 903 | 'var' => 'wgLogo', |
903 | 904 | 'label' => 'config-logo', |
| 905 | + 'attribs' => array( 'dir' => 'ltr' ), |
904 | 906 | 'help' => $this->parent->getHelpBox( 'config-logo-help' ) |
905 | 907 | ) ) |
906 | 908 | ); |