Ivan - Fix SMTP installation bug,

This commit is contained in:
ivan 2017-06-28 06:55:03 -03:00
parent 5114b4420b
commit 70fb338de5
2 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@ class InstallStep5Settings extends React.Component {
render() { render() {
return ( return (
<div className="install-step-5"> <div className="install-step-5">
<Header title={i18n('STEP_TITLE', {title: i18n('SYSTEM_SETTINGS'), current: 5, total: 7})} description={i18n('STEP_5_DESCRIPTION')}/> <Header title={i18n('STEP_TITLE', {title: i18n('SETTINGS'), current: 5, total: 7})} description={i18n('STEP_5_DESCRIPTION')}/>
{this.renderMessage()} {this.renderMessage()}
<Form loading={this.state.loading} onSubmit={this.onSubmit.bind(this)} value={this.state.form} onChange={(form) => this.setState({form})}> <Form loading={this.state.loading} onSubmit={this.onSubmit.bind(this)} value={this.state.form} onChange={(form) => this.setState({form})}>
<FormField name="title" label={i18n('TITLE')} fieldProps={{size: 'large'}} required/> <FormField name="title" label={i18n('TITLE')} fieldProps={{size: 'large'}} required/>

View File

@ -41,7 +41,7 @@ class TestSMTPController extends Controller {
Controller::request('smtp-host'), Controller::request('smtp-host'),
Controller::request('smtp-port'), Controller::request('smtp-port'),
Controller::request('smtp-user'), Controller::request('smtp-user'),
Controller::request('smtp-pass'), Controller::request('smtp-password'),
Controller::request('no-reply-email') Controller::request('no-reply-email')
); );