We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Working on #11 I noticed a probably bug on Glob class. Seems that GLOB_BRACE is always enabled.
Glob
GLOB_BRACE
This because conditionals use wrong precedence with the not ! operator, that it's applied to $flags first.
!
$flags
laminas-stdlib/src/Glob.php
Lines 114 to 116 in f0b299d
Line 200 in f0b299d
The text was updated successfully, but these errors were encountered:
Fix laminas#15: Fixed operator precedence comparing flags on Glob (BC)
8e5148d
Signed-off-by: Thomas Vargiu <tvargiu@gmail.com>
Merge pull request #43 from garygitton/fix/bug-on-glob-evaluating-glo…
6422838
…b-brace Fix #15 add test on glob and GLOB_BRACE flag
Handled in #43
Sorry, something went wrong.
Ocramius
Successfully merging a pull request may close this issue.
Working on #11 I noticed a probably bug on
Glob
class. Seems thatGLOB_BRACE
is always enabled.This because conditionals use wrong precedence with the not
!
operator, that it's applied to$flags
first.laminas-stdlib/src/Glob.php
Lines 114 to 116 in f0b299d
laminas-stdlib/src/Glob.php
Line 200 in f0b299d
The text was updated successfully, but these errors were encountered: