Allowed dots in filter branches.
Patch provided by Andre Nathan.
This commit is contained in:
parent
c9f5b6a689
commit
a11e121e54
1 changed files with 1 additions and 1 deletions
|
@ -348,7 +348,7 @@ class FilterParser #:nodoc:
|
||||||
scanner.scan /\s*/
|
scanner.scan /\s*/
|
||||||
if op = scanner.scan( /\=|\<\=|\<|\>\=|\>|\!\=/ )
|
if op = scanner.scan( /\=|\<\=|\<|\>\=|\>|\!\=/ )
|
||||||
scanner.scan /\s*/
|
scanner.scan /\s*/
|
||||||
if value = scanner.scan( /[\w\*]+/ )
|
if value = scanner.scan( /[\w\*\.]+/ )
|
||||||
case op
|
case op
|
||||||
when "="
|
when "="
|
||||||
Filter.eq( token, value )
|
Filter.eq( token, value )
|
||||||
|
|
Loading…
Add table
Reference in a new issue