Skip to content

Commit

Permalink
Prevent file_exists error
Browse files Browse the repository at this point in the history
  • Loading branch information
laurensschuitemaker committed Aug 31, 2023
1 parent bc4d64b commit 2c8ae4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/CI3Compatible/Core/CI_Loader.php
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ protected function _ci_load(array $_ci_data)
// Set the default data variables
$_ci_view = $_ci_data['_ci_view'] ?? false;
$_ci_vars = $_ci_data['_ci_vars'] ?? false;
$_ci_path = $_ci_data['_ci_path'] ?? false;
$_ci_path = $_ci_data['_ci_path'] ?? '';
$_ci_return = $_ci_data['_ci_return'] ?? false;

$file_exists = false;
Expand Down

0 comments on commit 2c8ae4e

Please sign in to comment.