Skip to content

Commit

Permalink
fix ogc "equals" operator after rfc 64 (MapServer#3613)
Browse files Browse the repository at this point in the history
  • Loading branch information
tbonfort committed Sep 5, 2012
1 parent a1f9221 commit 291674f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions mapogcfiltercommon.c
Expand Up @@ -538,6 +538,8 @@ char *FLTGetSpatialComparisonCommonExpression(FilterEncodingNode *psNode, layerO

if (strncasecmp(psNode->pszValue, "intersect", 9) == 0)
pszTmp = msStrdup("intersects");
if (strncasecmp(psNode->pszValue, "equals", 9) == 0)
pszTmp = msStrdup("eq");
else
pszTmp = msStrdup(psNode->pszValue);
msStringToLower(pszTmp);
Expand Down

0 comments on commit 291674f

Please sign in to comment.