Closed jdreesen closed 6 years ago
Previously, the result of is_array($ignoreFileExtensions) was used as the new value of $ignoreFileExtensions in case the parameter was an array, which would break the following in_array(...) statement.
is_array($ignoreFileExtensions)
$ignoreFileExtensions
in_array(...)
Good catch, thanks!
Previously, the result of
is_array($ignoreFileExtensions)
was used as the new value of$ignoreFileExtensions
in case the parameter was an array, which would break the followingin_array(...)
statement.