Skip to content

Commit

Permalink
WFS: fix PropertyIsNull on gml:boundedBy
Browse files Browse the repository at this point in the history
  • Loading branch information
rouault committed Nov 16, 2013
1 parent 0b5aae8 commit 7c97d94
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion mapogcfilter.c
Original file line number Diff line number Diff line change
Expand Up @@ -3697,7 +3697,8 @@ FilterEncodingNode* FLTSimplify(FilterEncodingNode *psFilterNode,
{
if( strcmp(psFilterNode->pszValue, "PropertyIsNull") == 0 &&
FLTIsGMLDefaultProperty(psFilterNode->psLeftNode->pszValue) &&
strcmp(psFilterNode->psLeftNode->pszValue, "@gml:id") != 0 )
strcmp(psFilterNode->psLeftNode->pszValue, "@gml:id") != 0 &&
strcmp(psFilterNode->psLeftNode->pszValue, "gml:boundedBy") != 0)
*pnEvaluation = MS_TRUE;
else
*pnEvaluation = MS_FALSE;
Expand Down
2 changes: 1 addition & 1 deletion msautotest
Submodule msautotest updated from de0de3 to aedd58

0 comments on commit 7c97d94

Please sign in to comment.