Skip to content

Commit

Permalink
Merge pull request #2088 from LuckyCyborg/4.0
Browse files Browse the repository at this point in the history
Overall improvements
  • Loading branch information
LuckyCyborg authored Jun 7, 2018
2 parents 82556ec + efa87b1 commit 6541b50
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion app/Middleware/RedirectIfAuthenticated.php
Original file line number Diff line number Diff line change
Expand Up @@ -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()) {
Expand Down
2 changes: 1 addition & 1 deletion app/Platform/Bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// Define The Application Version
//--------------------------------------------------------------------------

define('VERSION', '4.0.70');
define('VERSION', '4.0.71');

//--------------------------------------------------------------------------
// Set PHP Error Reporting Options
Expand Down
8 changes: 4 additions & 4 deletions modules/Contacts/Database/Seeds/FieldItemsTableSeeder.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public function run()
'default' => '',
),

'visibble' => 1,
'visible' => 1,

'field_group_id' => 1,
'created_by' => 1,
Expand All @@ -56,7 +56,7 @@ public function run()
'default' => '',
),

'visibble' => 1,
'visible' => 1,

'field_group_id' => 1,
'created_by' => 1,
Expand All @@ -75,7 +75,7 @@ public function run()
'default' => '',
),

'visibble' => 0,
'visible' => 0,

'field_group_id' => 1,
'created_by' => 1,
Expand All @@ -94,7 +94,7 @@ public function run()
'rows' => 10,
),

'visibble' => 1,
'visible' => 1,

'field_group_id' => 1,
'created_by' => 1,
Expand Down

0 comments on commit 6541b50

Please sign in to comment.