Skip to content

Commit

Permalink
Item13077: Fix BOOLGROUP implementation
Browse files Browse the repository at this point in the history
Fix courtesy of CrawfordCurrie.  BOOLGROUP needs to be treated like a
SELECT option.
  • Loading branch information
gac410 committed Nov 6, 2014
1 parent be89cfd commit 5b07d2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/lib/Foswiki/Configure/Value.pm
Expand Up @@ -123,7 +123,7 @@ sub new {
sub parseTypeParams {
my ( $this, $str ) = @_;

if ( $this->{typename} =~ /^SELECT/ ) {
if ( $this->{typename} =~ /^(SELECT|BOOLGROUP)/ ) {

# SELECT types *always* start with a comma-separated list of
# things to select from. These things may be words or wildcard
Expand Down

0 comments on commit 5b07d2a

Please sign in to comment.