Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
tsukasa-mixer committed Sep 15, 2021
1 parent 532c1c4 commit e5d1a77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/PHPSQLParser/Options.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class Options
public function __construct(array $options)
{
$this->options = $options;
$this->mboverloaded = (bool)@ini_get('mbstring.func_overload');
$this->mboverloaded = extension_loaded('mbstring') && @ini_get('mbstring.func_overload');
}

/**
Expand Down

0 comments on commit e5d1a77

Please sign in to comment.