diff options
author | lpsolit%gmail.com <> | 2008-05-08 05:16:24 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2008-05-08 05:16:24 +0200 |
commit | b65f7dd963ba5978315885d3b0766f86edacd492 (patch) | |
tree | e6615f48d6b668d7f115000acccc5abdfc1b6024 /t | |
parent | cce244f6b578309c6b428078d3a9947bfccc6638 (diff) | |
download | bugzilla-b65f7dd963ba5978315885d3b0766f86edacd492.tar.gz bugzilla-b65f7dd963ba5978315885d3b0766f86edacd492.tar.xz |
Bug 432717: t/008filter.t incorrectly reports [% foo.${bar} = baz %] as unsafe - Patch by Frédéric Buclin <LpSolit@gmail.com> r/a=mkanat
Diffstat (limited to 't')
-rw-r--r-- | t/008filter.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/008filter.t b/t/008filter.t index 8b92d94d0..d999e2008 100644 --- a/t/008filter.t +++ b/t/008filter.t @@ -190,7 +190,7 @@ sub directive_ok { return 1 if $directive =~ /^[0-9]+$/; # Simple assignments - return 1 if $directive =~ /^[\w\.\$]+\s+=\s+/; + return 1 if $directive =~ /^[\w\.\$\{\}]+\s+=\s+/; # Conditional literals with either sort of quotes # There must be no $ in the string for it to be a literal |