Skip to content

Commit

Permalink
do not fail
Browse files Browse the repository at this point in the history
  • Loading branch information
dgrammatiko committed Jul 20, 2017
1 parent 00badb5 commit a890a0b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion installation/model/database.php
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,8 @@ public function initialise($options)
$options->db_user,
$options->db_pass,
$options->db_name,
$options->db_prefix
$options->db_prefix,
isset($options->db_select) ? $options->db_select : false
);
}
catch (RuntimeException $e)
Expand Down
2 changes: 1 addition & 1 deletion installation/model/setup.php
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ public function initialise($options)
$options->db_pass,
$options->db_name,
$options->db_prefix,
$options->db_select
isset($options->db_select) ? $options->db_select : false
);
}
catch (RuntimeException $e)
Expand Down

0 comments on commit a890a0b

Please sign in to comment.