1
0
mirror of https://github.com/freescout-helpdesk/freescout.git synced 2024-11-24 19:33:07 +01:00

Fix checking DB connection on installation - closes #279

This commit is contained in:
FreeScout 2019-06-27 01:02:51 -07:00
parent 68588d1bb2
commit 0e470df4b6

View File

@ -125,6 +125,10 @@ class EnvironmentController extends Controller
$request->database_charset = 'utf8';
$request->database_collation = 'utf8_unicode_ci';
$this->testDbConnect($request);
} else {
throw $e;
}
}
} catch (\Exception $e) {