diff --git a/client/src/app/install/install-step-4-user-system.js b/client/src/app/install/install-step-4-user-system.js index 5a33296b..bc85162a 100644 --- a/client/src/app/install/install-step-4-user-system.js +++ b/client/src/app/install/install-step-4-user-system.js @@ -56,8 +56,8 @@ class InstallStep4UserSystem extends React.Component { path: '/system/init-settings', data: { 'language': this.props.language, - 'user-system-enabled': form['user-system-enabled'], - 'registration': form['registration'] + 'user-system-enabled': form['user-system-enabled'] * 1, + 'registration': form['registration'] * 1 } }).then(() => browserHistory.push('/install/step-5')); } diff --git a/server/controllers/system/init-settings.php b/server/controllers/system/init-settings.php index 45f889ff..21b000ff 100644 --- a/server/controllers/system/init-settings.php +++ b/server/controllers/system/init-settings.php @@ -48,8 +48,8 @@ class InitSettingsController extends Controller { 'max-size' => 1024, 'title' => 'Support Center', 'url' => 'http://dev3.opensupports.com', - 'registration' => Controller::request('registration'), - 'user-system-enabled' => Controller::request('user-system-enabled'), + 'registration' => !!Controller::request('registration'), + 'user-system-enabled' => !!Controller::request('user-system-enabled'), 'last-stat-day' => date('YmdHi', strtotime(' -12 day ')), 'ticket-gap' => Hashing::generateRandomPrime(100000, 999999), 'file-gap' => Hashing::generateRandomPrime(100000, 999999), diff --git a/server/data/mail-templates/user-signup-en.html b/server/data/mail-templates/user-signup-en.html index e7cfc4cb..e2b5833b 100644 --- a/server/data/mail-templates/user-signup-en.html +++ b/server/data/mail-templates/user-signup-en.html @@ -340,7 +340,7 @@
- Use this code in {{url}}/verify-token or click the button below. + Use this code in {{url}}/verify-token/{{email}}/{{verificationToken}} or click the button below. |