diff --git a/app/Middleware/RedirectIfAuthenticated.php b/app/Middleware/RedirectIfAuthenticated.php index 6310cf0355..6e8680e267 100644 --- a/app/Middleware/RedirectIfAuthenticated.php +++ b/app/Middleware/RedirectIfAuthenticated.php @@ -24,7 +24,7 @@ class RedirectIfAuthenticated public function handle(Request $request, Closure $next, $guard = null) { if (is_null($guard)) { - $guard = Config::get('auth.default', 'web'); + $guard = Config::get('auth.defaults.guard', 'web'); } if (Auth::guard($guard)->guest()) { diff --git a/app/Platform/Bootstrap.php b/app/Platform/Bootstrap.php index 32ae87e628..81d3ca8795 100644 --- a/app/Platform/Bootstrap.php +++ b/app/Platform/Bootstrap.php @@ -14,7 +14,7 @@ // Define The Application Version //-------------------------------------------------------------------------- -define('VERSION', '4.0.70'); +define('VERSION', '4.0.71'); //-------------------------------------------------------------------------- // Set PHP Error Reporting Options diff --git a/modules/Contacts/Database/Seeds/FieldItemsTableSeeder.php b/modules/Contacts/Database/Seeds/FieldItemsTableSeeder.php index 9d5317d50a..69b061eeae 100644 --- a/modules/Contacts/Database/Seeds/FieldItemsTableSeeder.php +++ b/modules/Contacts/Database/Seeds/FieldItemsTableSeeder.php @@ -37,7 +37,7 @@ public function run() 'default' => '', ), - 'visibble' => 1, + 'visible' => 1, 'field_group_id' => 1, 'created_by' => 1, @@ -56,7 +56,7 @@ public function run() 'default' => '', ), - 'visibble' => 1, + 'visible' => 1, 'field_group_id' => 1, 'created_by' => 1, @@ -75,7 +75,7 @@ public function run() 'default' => '', ), - 'visibble' => 0, + 'visible' => 0, 'field_group_id' => 1, 'created_by' => 1, @@ -94,7 +94,7 @@ public function run() 'rows' => 10, ), - 'visibble' => 1, + 'visible' => 1, 'field_group_id' => 1, 'created_by' => 1,