1
0
mirror of https://gitnet.fr/deblan/gist.git synced 2021-08-14 08:30:49 +02:00

Merge branch 'hotfix/login'

This commit is contained in:
Simon Vieille 2017-06-20 16:46:22 +02:00
commit 99635e8e3c

View File

@ -26,7 +26,7 @@ class LoginController extends Controller
{
$app = $this->getApp();
if (false === $app['settings']['enable_registration']) {
if (false === $app['settings']['security']['enable_registration']) {
return new Response('', 403);
}
@ -78,7 +78,7 @@ class LoginController extends Controller
{
$app = $this->getApp();
if (false === $app['settings']['enable_login']) {
if (false === $app['settings']['security']['enable_login']) {
return new Response('', 403);
}