- Fixed bug #1110, which did not treat 'status:Completed' the same
  as 'status:completed' (thanks to Aikido Guy).
This commit is contained in:
Scott Kostyshak 2012-12-31 04:21:02 -05:00 committed by Paul Beckingham
parent 28523e97c6
commit 0f4a366752
3 changed files with 67 additions and 2 deletions

View file

@ -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
{