Bug #1110
- Fixed bug #1110, which did not treat 'status:Completed' the same as 'status:completed' (thanks to Aikido Guy).
This commit is contained in:
committed by
Paul Beckingham
parent
28523e97c6
commit
0f4a366752
@@ -533,6 +533,14 @@ void E9::operator_equal (
|
||||
: "false";
|
||||
}
|
||||
|
||||
// Case-insensitive comparison for status. Fixes #1110.
|
||||
else if (left._raw == "status")
|
||||
{
|
||||
result._value = compare (left._value, right._value, false)
|
||||
? "true"
|
||||
: "false";
|
||||
}
|
||||
|
||||
// Regular equality matching.
|
||||
else
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user