Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
Huludini committed Feb 20, 2016
2 parents 49051aa + 18fa153 commit fd25a72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Http/Controllers/Admin/InstallController.php
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ public function complete()
{
// Check if there are accounts already created
$accounts = DB::connection( 'member' )->table( 'tb_user' )->get();
if ( count( $accounts ) == 0 )
if ( count( $accounts ) > 0 )
{
foreach ( $accounts as $account )
{
Expand Down

0 comments on commit fd25a72

Please sign in to comment.