Some changes in login routes for 5.3

This commit is contained in:
James Cole
2016-09-16 09:02:35 +02:00
parent 7d63f124c4
commit bd53410c71
4 changed files with 166 additions and 146 deletions

View File

@@ -97,7 +97,7 @@ class Handler extends ExceptionHandler
// create job that will mail.
$ip = $_SERVER['REMOTE_ADDR'] ?? '0.0.0.0';
$job = new MailError($userData, env('SITE_OWNER'), $ip, $data);
$job = new MailError($userData, env('SITE_OWNER', ''), $ip, $data);
dispatch($job);
}