Fix improperly named mailgun environment variable, closes #942

This commit is contained in:
Dane Everitt 2018-02-17 13:00:11 -06:00
parent 8e1aa15dba
commit 303b64ced1
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
2 changed files with 4 additions and 4 deletions

View file

@ -126,7 +126,7 @@ class EmailSettingsCommand extends Command
trans('command/messages.environment.mail.ask_mailgun_domain'), $this->config->get('services.mailgun.domain')
);
$this->variables['MAILGUN_KEY'] = $this->option('password') ?? $this->ask(
$this->variables['MAILGUN_SECRET'] = $this->option('password') ?? $this->ask(
trans('command/messages.environment.mail.ask_mailgun_secret'), $this->config->get('services.mailgun.secret')
);
}